I have to implement a ripple effect on an array of pixels. Each pixel is a 32 bit integer representing an ARGB color. Does anyone have any suggestions on how to start?
|
|
Generally, a ripple effect is some kind of distortion of the image where the amount of distortion varies from point to point in a "wavy" pattern. So the first task is to create a "depth mapping" producing a number for each pixel. Intuitively the depth map will represent the height of a rippled water surface above the original pixels. A starting point for experimentation could be
When you have the depth map (which can be precomputed if all you want is to apply the same ripple to many different images), you have various options for what to do with it:
It may take some experimentation with combinations and variations of these to approximate your mental picture of the desired effect. |
||||
|
|
check out the ripple function in this sample http://www.codeproject.com/Articles/60532/Rippling-Reflection-Effect-with-Silverlight-3-s-Wr.aspx |
|||
|
|
