Lena.bmp:
This is an image of Lena. Lena is
the main image that most of our algorithm testing is performed
on. It has been a standard image to use for image processing
for many decades. This is the RGB Lena in bitmap format.
A 512 X 512 image of lena is about 768KB as a
bitmap.
The image is broken up into its
component parts by reading in the RGB values from the bitmap (since
it is bitmap it is actually in BGR order) and then performing
the following transformations (using greyscale images).
Cr = R - G
Cb = B -
G
Y = G + (Cr + Cb)/2