Page 319 - AI Ver 3.0 class 10_Flipbook
P. 319
2. What is the output colour when you put values of R, G, B as 0 respectively?
3. How does the colour vary when you put either of the three colours as 0 and then keep on varying the other two?
4. How does the output colour change when all the three colours are varied in same proportion?
5. What is the RGB value of your favourite colour from the colour palette?
How does a Computer See Images?
Every coloured image that is stored can be split into 3 different channels, i.e., Red (R), Green (G) and Blue (B), with
different intensities. The computer identifies the value related to each pixel and determines the size and colour of
the image.
Each channel is like a layer or plane of the image, focusing on one colour component (red, green, or blue). Every
channel contains a grid of pixels, and each pixel has a value between 0 and 255.
where,
• 0 means no intensity for that colour.
• 255 means full intensity for that colour.
For example:
• A pixel value of [255, 0, 0] means maximum red intensity with no green or blue, so the colour is bright red.
• A pixel value of [0, 255, 0] means maximum green intensity with no red or blue, so the colour is bright green.
• A pixel value of [255, 255, 255] means full intensity for all three channels, resulting in white.
When the computer combines the values from the red, green, and blue channels for each pixel, it creates the final
colour of that pixel in the image. The three channels together define the colour image. It is the standard format
used in most digital screens, cameras, and editing software.
Computer Vision (Theory) 317

