Chap 7 Color Model
Chap 7 Color Model
1
Color Model
Human distinguish 1 to 2 million color
impossible to describe them in words
Color model Mathematical model describing
the way ‘color’ can be represented.
Types of Color Model
Additive uses light to display color (transmitted
light)
Subtractive uses printing ink (reflected light)
2
COMMON COLORS
There are several established color models
used in computer graphics, but the two most
common are
RGB (Red Green Blue)
CMYK (Cyan Magenta Yellow Black)
Other Models
HSV/HSB = Hue Saturation Intensity
4
CMYK Color Model
Subtractive color Model
(reflective light)
For printed material
Uses ink to display color
Cyan+ Magenta +Yellow = Black
5
Color Depth/ Bit Depth
Number of bits used to indicate the color of a single
pixel (bits /pixel)
The first graphics cards and monitors supported 1-bit color,
which was monochrome (most commonly black and white),
for early computers like Macintosh and Atari ST.
Today, most computers support at least 32-bit color,
That allows for the viewing of high quality video,
including high definition content and some of the newer video
games that feature high-end graphics engines
With the introduction of Windows 7, support for 48-bit color
was introduced
made available for home and business computer users to
utilize, assuming the ‘video card’ featured this color depth.
6
Determining Color Depth
2n
Bit Depth 1 21= 2 colors (Monochrome)
Bit Depth 2 4 colors (CGA)
Bit Depth 4 16 colors (EGA)
Bit Depth 8 256 colors (VGA)
Bit Depth 16 65536 colors (High color, XGA)
Bit Depth 24 16777216 colors (True Colors, SVGA)
Bit Depth 32 4294967296 (True Colors, Alpha
Channel)
7
True Colors - RGB
Images are known as "True Color" when each pixel is defined in
terms of its actual RGB or CMYK values.
Every pixel in a true color image has 256 possible values for each of
it's
red, green or blue components (in the RGB model) or
cyan, magenta, yellow and black (in the CMYK model).
Because there are 256 possible values for each RGB or CMYK
component, then
RGB true color would have a 24-bit color depth and
CMYK true color would have a 32-bit color depth.
There are millions of possible colors for each pixel in a true color
image. That's why it is called "True Color". 8
For Example (RGB)
White would be composed of maximum intensity of
red, green and blue light (R=255 G=255 B=255) and
black would be composed of zero intensity of red,
green and blue light (R=0 G=0 B=0).
Cyan would be composed of maximum intensity of
blue and green light and zero intensity of red light
(R=0 B=255 G=255).
Magenta would be composed of maximum intensity
of red and blue light and zero intensity of green light
(R=255 G=0 B=255):
9
Example
10
True Colors - CMYK
Images using the CMYK color model are also true
color.
11
True Colors - CMYK
Each pixel in a 32-bit CMYK image is one of 256 x
256 x 256 possible colors x 256 variations of black.
A mix of 100% each of cyan, magenta and yellow
produces black, so the black component is extra
12
Conversion of RGB to CMYK
R’ = R/255; G’ = G/255; B’ = B/255
K = 1 – max (R’, G’, B’)
C = (1 – R’ - K)/(1 - K)
M = (1 – G’ - K)/(1 - K)
Y = (1 – B’ - K)/(1 - K)
R G B
255 255 255
C M Y K
13
Conversion of CMYK to RGB
R = (255 – C) x (1 – K/255)
G = (255 - M)x(1 – K/255)
B = (255 – Y)x(1 – K/255)
C M Y K
255 255 255 0
R G B
14
Indexed Color
In digital photography and imaging indexed color is
the color of each pixel and is represented by a number.
each number (the index) corresponds to a color in the color table (the palette).
used to describe reduced color mapping of 8-bit or less.
commonly used on Web pages as they are small and quick to load.
TIF and JPG 24 bit RGB value for each of the millions of image pixels.
15
Indexed Color
Example:
A 2-bit indexed color image.
16
Spot Color VS Process Color
A spot color is a special premixed ink that requires
its own printing plate on a printing press
17
Spot Color VS Process Color
Process color also referred as
4 color (4c) process printing
It involves the use of four plates:
Cyan, Magenta, Yellow and Key (Black).
18