RTUComputer ScienceYr 2024 · Sem 62024

Q16Digital Image Processing

Question

4 marks

Discuss the CMY and HSI color models and their applications.

Answer

A definitive comparison of color models. Contrasts the CMY subtractive architecture utilized strictly in physical printing hardware against the HSI psychological model used for advanced mathematical image processing.

The RGB model is ideal for light-emitting monitors, but completely fails when applied to physical ink or human psychological perception. Computer scientists engineered highly specialized color models to solve these specific physical domains.

1. The CMY (Cyan, Magenta, Yellow) Subtractive Model

CMY is the absolute mandatory mathematical model for all physical color printing hardware.

  • Mechanism: It is a Subtractive architecture. When white light physically strikes cyan ink, the ink violently absorbs (subtracts) the Red wavelengths and reflects Green and Blue. Magenta absorbs Green; Yellow absorbs Blue.
  • Mathematical Conversion: It is perfectly inversely mapped to RGB. [C, M, Y] = [1 - R, 1 - G, 1 - B] (assuming normalized 0-1 values).
  • CMYK Extension: Because physically mixing pure C, M, and Y inks produces a muddy brown rather than absolute black, printers aggressively introduce a fourth "Key" (Black) ink (CMYK) to drastically improve contrast and save expensive colored ink.

2. The HSI (Hue, Saturation, Intensity) Model

RGB and CMY are hardware-centric. HSI is a psychological, mathematically decoupled architecture designed specifically to mimic how the human brain actually processes color.

  • Hue (H): The absolute dominant wavelength (the actual pure color, e.g., "Red" or "Yellow"). It is mathematically represented as an angle from to .
  • Saturation (S): The purity or "vibrancy" of the color (how much white light is physically mixed in). E.g., pure red is highly saturated; pink is desaturated red.
  • Intensity (I): The absolute raw brightness of the pixel, completely decoupled from the color.
  • Applications: HSI is mandatory for image processing. If you want to mathematically smooth an image, you only apply the blur algorithm to the Intensity (I) channel. If you applied it to RGB, the colors would violently shift and corrupt. HSI allows engineers to manipulate brightness without destroying the Hue.
Back to Paper