DIP Color Image Processing (Chapter-05)
DIP Color Image Processing (Chapter-05)
No Question Year
2021, 2020,
1 What do you mean by color model? Write about color fundamentals.
2017
2 What is color model? 2015
3 Define HUE, Saturation, and Luminance. 2021, 2015
4 Define psycho-visual redundancy. 2015, 2013
5 Differentiate between RGB and CMY color model. 2017, 2013
6 What do you mean by radiance, luminance, and brightness? 2012
7 How is the chromaticity diagram formed? 2012
Describe the way the hue, saturation, and intensity components are
8 2020
calculated from the RGB color format.
9 Explain the basics of full-color image processing. 2020
If R=200, G=100, and B=50, then what will be the value of L and H in the
10 2017
HSL color model?
Chapter 5
Color image processing
Luminance describes the measurement of the amount of light emitting, passing through or reflected
from a particular surface from a solid angle. It also indicates how much luminous power can be
perceived by the human eye. This means that luminance indicates the brightness of light emitted or
reflected off of a surface.
Brightness is the perceived intensity of light coming from a screen. On a color screen, it is the average
of the red, green and blue pixels on the screen. Brightness is important to both color perception and
battery life on mobile devices. It can be adjusted manually or automatically with sensors.
Solution:
𝑅 𝐺 𝐵
r= (𝑅+𝐺+𝐵), g= (𝑅+𝐺+𝐵), b= (𝑅+𝐺+𝐵),
1 3
I= (𝑅 + 𝐺 + 𝐵), 𝑆 = 1 − [min (𝑅 + 𝐺 + 𝐵)]
3 (𝑅+𝐺+𝐵)
1
[(𝑅−𝐺)+(𝑅−𝐵)]
And H= 𝑐𝑜𝑠 −1 { 2
}
√(𝑅−𝐺)2 +(𝑅−𝐵)(𝐺−𝐵)
i)Process each component image individually and then form a composite processed color image from
the individually processed components.
ii)Work with color pixels directly, color pixels really are vectors which shows in figure.
(255, 255, 0)
(255,255,255)
(0, 255, 0)
(0,255,255)
(255, 0, 255)
(255, 0, 0)
(0, 0, 255)
(0, 0, 0)
Fig: Spatial mask for Gray-scale and RGB color image.
𝐶𝑅 𝑅
C= [𝐶𝐺 ] = [𝐺 ]
𝐶𝐵 𝐵
The color components are a function of coordinates (x,y) by using the notation:
𝐶𝑅(𝑥,𝑦) 𝑅(𝑥,𝑦)
C(x , y)= [𝐶𝐺(𝑥,𝑦) ] = [𝐺(𝑥,𝑦) ]
𝐶𝐵(𝑥,𝑦) 𝐵(𝑥,𝑦)
10. If R=200, G= 100 and B= 50 then what will be the value of L and H is HSL color model? [2017]
Solution:
1
[(R−G)+(R−B)
H= ∅ = Cos−1 {[(R−G)
2
2 +(R−B)(G−B)]1/2 }
= 19.1068
3
S= 1 − (R+G+B) × [Min(RGB)
3
= 1 − 350 × 50 = 0.5714
1
L= × (R + G + B)
3
= 116.67