RTUComputer ScienceYr 2020 · Sem 82020

Q16Digital Image Processing

Question

4 marks

Describe the RGB and HSI color models. Why is HSI often preferred over RGB in image processing?

Answer

An architectural contrast between RGB and HSI color models. Details why RGB is a catastrophic mathematical space for image processing algorithms, and how HSI violently decouples physical luminance from pure color for elite algorithmic manipulation.

Color models provide a rigid mathematical framework to numerically specify colors. However, models built for hardware are often catastrophically unsuited for mathematical image processing algorithms.

RGB is an additive hardware model physically based on the three phosphors (Red, Green, Blue) of a CRT or LCD monitor. It maps colors to a massive 3D Cartesian cube.

  • The Demerit: It is completely alien to human perception. A human does not say "That car is 80% Red and 20% Blue." Furthermore, the color (chrominance) and the brightness (luminance) are mathematically violently fused together. If you want to simply make a pixel darker, you are forced to mathematically recalculate and alter all three R, G, and B matrices simultaneously.

HSI (Hue, Saturation, Intensity) completely abandons hardware physics and models the exact psychology of the human retina.

  • Hue: The absolute dominant wavelength of pure color (e.g., Red vs Yellow), represented as a 360-degree mathematical angle.
  • Saturation: The purity of the color (how much white is mixed in). Pink is simply low-saturation Red.
  • Intensity: The absolute physical brightness of the pixel, completely stripped of any color data.

Because HSI mathematically isolates the Intensity channel. If an algorithm needs to execute Histogram Equalization to improve contrast, it ONLY modifies the 1D Intensity matrix. The Hue and Saturation matrices are left completely untouched. If this was attempted in RGB, altering the values would violently warp the actual colors of the image, turning green grass purple.

Back to Paper