Friday, March 27, 2009

Normalized RGB image

Converting an RGB image into normalized RGB removes the effect of any intensity variations.

The normalized RGB color space is obtained as:
r = R/(R+G+B);
g = G/(R+G+B);
b = B/(R+G+B);

Followers