Wavelets:
Wavelets are a way of reformatting and reorganizing
data so that most of the images energy is stored in a small segment
of the image. This way the rest of the image can be highly
compressed since it will contain very small values.
This transformation is done by comparing neighboring
pixels and storing the difference in another section of the image. Thus
two neighboring pixels with close values can be stored as the value, and the
difference(which will be small). The equations for
doing the wavelet tranformation are as follows:
y0 = x1 + z0/2
z0 = x0 - x1
Where x0 and x1 are neighboring pixels and y0 and z0
are values in the new image(y0 will hold the large value, z0 will be put in the
section with the small value).
In order to put the image back to normal, we use the
following equations:
x0 = x1 + z0
x1 = y0 - z0/2
The images at the right show the wavelet after the
first and second transformations, respectively.