**Color Models and Image Processing Notes**
**1. HSI Color Model**
The HSI model separates color into Hue (color type), Saturation (purity), and Intensity (brightness). Hue
is represented as an angle (0–360°), saturation from 0–1, and intensity represents overall lightness.
**2. HSI to RGB Conversion**
Conversion includes computing RGB values using formulas depending on hue's sector (0–120°,
120–240°, 240–360°). Each segment uses intermediate variables and trigonometric relationships to
reconstruct RGB.
**3. CMY and CMYK Models**
CMY (Cyan, Magenta, Yellow) is subtractive; used in printing. CMYK adds 'K' (black) for depth, cost
efficiency, and richer shadows. Conversion from RGB uses C = 1-R, M = 1-G, Y = 1-B, with K = min(C,
M, Y).
**4. Chromaticity Diagram**
Represents colors independent of intensity using x, y chromaticity coordinates. Shows gamut of visible
colors, dominant wavelength, purity, and complementary colors.
**5. Color Complement**
A color complement is the color located opposite on the chromaticity or color wheel. Complementary
colors produce white (additive) or black (subtractive).
**6. Color Slicing**
Technique to isolate a specific color range in an image. Useful for segmentation, highlighting objects, or
detecting specific features.
**7. Hue, Saturation, Brightness**
Hue: Type of color (0–360°). Saturation: Colorfulness or purity (0–1). Brightness: Lightness or intensity
of color.
**8. Pseudo-Color Image Processing**
Assigns artificial colors to grayscale images to enhance visualization. Used in medical imaging, satellite
data, thermal mapping, etc.