Digital Image Processing Color Models

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers electromagnetic spectrum basics, human visual system components, and various hardware- and image processing-oriented color models like RGB, CMY, CIE XYZ, CIE Lab, HSV, and YCbCr.

Last updated 7:16 PM on 5/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

Visible Spectrum

The range of electromagnetic radiation visible to humans, spanning from 400nm400\,nm (blue) to 700nm700\,nm (red).

2
New cards

Rods

Photoreceptors in the human visual system responsible for perceiving intensity.

3
New cards

Cones

Photoreceptors in the human visual system responsible for color perception.

4
New cards

RGB Model

An additive color model (Red, Green, Blue) used for displays and monitors where an image consists of three color bands.

5
New cards

CMY Model

A subtractive color model (Cyan, Magenta, Yellow) used primarily in paper printing, where the conversion from RGB is defined as (CMY)=(111)(RGB)\begin{pmatrix} C \\ M \\ Y \end{pmatrix} = \begin{pmatrix} 1 \\ 1 \\ 1 \end{pmatrix} - \begin{pmatrix} R \\ G \\ B \end{pmatrix}.

6
New cards

CIE XYZ Model

A 3D color model defined by the Commission Internationale de l’Eclairage based on the chromatic response of the eye using three standard primaries: XX, YY, and ZZ.

7
New cards

Luminance (CIE XYZ)

The component YY in the CIE XYZ model, which contains all the intensity information and matches the sum of the three human cone responses.

8
New cards

Normalized CIE Coordinates

Values calculated such that x=XX+Y+Zx = \frac{X}{X+Y+Z}, y=YX+Y+Zy = \frac{Y}{X+Y+Z}, and z=ZX+Y+Zz = \frac{Z}{X+Y+Z}, resulting in the property x+y+z=1x + y + z = 1.

9
New cards

CIE Lab (Lab*) Model

A color model with one luminance channel (LL) and two color axes (aa and bb), useful for measuring small color differences in industry.

10
New cards

a axis (CIE Lab)

The color dimension extending from green (a-a) to red (+a+a).

11
New cards

b axis (CIE Lab)

The color dimension extending from blue (b-b) to yellow (+b+b).

12
New cards

HSV Model

A color space representing Hue, Saturation, and Value; it is intended to be a perceptual space suitable for art, recognition, and minimizing illumination change effects.

13
New cards

Hue (H)

The color component of the HSV model encoded as an angle from 00 to 2π2\pi; for example, 00^{\circ} to 6060^{\circ} represents Red.

14
New cards

Saturation (S)

The component of the HSV model describing the percentage of the color.

15
New cards

Value (V)

The component of the HSV model representing the intensity of the color.

16
New cards

YCbCr Model

A fast-to-compute model used in digital TV and compression where YY is luminance, CbCb is blue-difference, and CrCr is red-difference.

17
New cards

rgb2hsv

A Matlab Image Processing Toolbox function used to convert RGB color values to the HSV color space.

18
New cards

Color Slicing

An image processing technique, often performed in the HSV space, used to assign different colors to the foreground versus the background based on specific Hue values.