<< Chapter < Page Chapter >> Page >

In Y C b C r , the luminance parameter is related to an overall intensity of the image.The chrominance components are a measure of the relative intensities of the blue and red components. The inverse of the transformation in [link] can easily be shown to be the following.

R = Y + 1 . 4025 ( C r - 128 ) G = Y - 0 . 3443 ( C b - 128 ) - 0 . 7144 * ( C r - 128 ) B = Y + 1 . 7730 ( C b - 128 )

Color exercise

Download the files girl.tif and ycbcr.mat . For help on image command select the link.

You will be displaying both color and monochrome images in the following exercises.Matlab's image command can be used for both image types, but care must be taken for the command to work properly.Please see the help on the image command for details.

Download the R G B color image file girl.tif , and load it into Matlab using the imread command. Check the size of the Matlab array for this image by typing whos . Notice that this is a three dimensional array of type uint8 . It contains three gray scale image planes corresponding to the red, green, andblue components for each pixel. Since each color pixel is represented bythree bytes, this is commonly known as a 24-bit image. Display the color image using

image(A);

axis('image');

where A is the 3-D R G B array.

You can extract each of the color components using the following commands.

RGB = imread('girl.tif'); % color image is loaded into matrix RGB

R = RGB(:,:,1); % extract red component from RGB

G = RGB(:,:,2); % extract green component from RGB

B = RGB(:,:,3); % extract blue component from RGB

Use the subplot and image commands to plot the original image, along with each of the three color components.Note that while the original is a color image, each color component separately is a monochrome image.Use the syntax subplot(2,2,n) , where n = 1 , 2 , 3 , 4 , to place the four images in the same figure.Place a title on each of the images, and print the figure(use a color printer).

We will now examine the Y C b C r color space representation. Download the file ycbcr.mat , and load it intoMatlab using load ycbcr . This file contains a Matlab array for a color image in Y C b C r format. The array containsthree gray scale image planes that correspond to the luminance ( Y ) and two chrominance ( C b C r ) components. Use subplot(3,1,n) and image to display each of the components in the same figure.Place a title on each of the three monochrome images, and print the figure.

In order to properly display this color image, we need to convert it to R G B format. Write a Matlab function that will perform the transformation of [link] . It should accept a 3-D Y C b C r image array as input, and return a 3-D R G B image array.

Now, convert the ycbcr array to an R G B representation and display the color image.Remember to convert the result to type uint8 before using the image command.

An interesting property of the human visual system, with respect to the Y C b C r color space, is that we are much more sensitive to distortion in the luminance component than in the chrominancecomponents. To illustrate this, we will smooth each of these components with a Gaussian filter and view the results.

Questions & Answers

how to create a software using Android phone
Wiseman Reply
how
basra
what is the difference between C and C++.
Yan Reply
what is software
Sami Reply
software is a instructions like programs
Shambhu
what is the difference between C and C++.
Yan
yes, how?
Hayder
what is software engineering
Ahmad
software engineering is a the branch of computer science deals with the design,development, testing and maintenance of software applications.
Hayder
who is best bw software engineering and cyber security
Ahmad
Both software engineering and cybersecurity offer exciting career prospects, but your choice ultimately depends on your interests and skills. If you enjoy problem-solving, programming, and designing software syste
Hayder
what's software processes
Ntege Reply
I haven't started reading yet. by device (hardware) or for improving design Lol? Here. Requirement, Design, Implementation, Verification, Maintenance.
Vernon
I can give you a more valid answer by 5:00 By the way gm.
Vernon
it is all about designing,developing, testing, implementing and maintaining of software systems.
Ehenew
hello assalamualaikum
Sami
My name M Sami I m 2nd year student
Sami
what is the specific IDE for flutter programs?
Mwami Reply
jegudgdtgd my Name my Name is M and I have been talking about iey my papa john's university of washington post I tagged I will be in
Mwaqas Reply
yes
usman
how disign photo
atul Reply
hlo
Navya
hi
Michael
yes
Subhan
Show the necessary steps with description in resource monitoring process (CPU,memory,disk and network)
samuel Reply
What is software engineering
Tafadzwa Reply
Software engineering is a branch of computer science directed to writing programs to develop Softwares that can drive or enable the functionality of some hardwares like phone , automobile and others
kelvin
if any requirement engineer is gathering requirements from client and after getting he/she Analyze them this process is called
Alqa Reply
The following text is encoded in base 64. Ik5ldmVyIHRydXN0IGEgY29tcHV0ZXIgeW91IGNhbid0IHRocm93IG91dCBhIHdpbmRvdyIgLSBTdGV2ZSBXb3puaWFr Decode it, and paste the decoded text here
Julian Reply
what to do you mean
Vincent
hello
ALI
how are you ?
ALI
What is the command to list the contents of a directory in Unix and Unix-like operating systems
George Reply
how can i make my own software free of cost
Faizan Reply
like how
usman
hi
Hayder
The name of the author of our software engineering book is Ian Sommerville.
Doha Reply
what is software
Sampson Reply
the set of intruction given to the computer to perform a task
Noor
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Purdue digital signal processing labs (ece 438). OpenStax CNX. Sep 14, 2009 Download for free at http://cnx.org/content/col10593/1.4
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Purdue digital signal processing labs (ece 438)' conversation and receive update notifications?

Ask