Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 908 Bytes

histeqcolor.md

File metadata and controls

10 lines (8 loc) · 908 Bytes

Histogram Equalization on Color Image

[code]

The histogram equalization on a color image is performed by equalizing its brightness rather than the color. To keep the color in balance and only equalize the brightness, we need a color model that separates the color from the brightness. The color model HSV (Hue, Saturation, Value) describes the color, by the color itself (Hue and Saturation), and its brightness (Value). This model is also closer to the way in which human vision perceives color. With this new color model, we can equalize only the value component and keep the color in balance. The Figure below presents the result of the histogram equalization on a color image.