Detecting skin in colour images, Computer Graphics

Assignment Help:

In this lab you will learn how to use chrominance1 to segment coloured images. Here you be detecting skin, however, you could use this method to detect other coloured regions in images.

Firstly you will build a model describing the likelihood that any pair of chrominance values belongs to a piece of skin. Secondly you will test images and identify likely skin regions.

Getting Started

1. Download the following files from the course web site

  • the image 'face.jpg'.
  • the incomplete file 'Lab2.m', and
  • the file 'RGB2Lab.m'

Save these in the directory you are using for this lab.

Deliverable:

To gain the marks for this lab you will need to show me your completed Lab2 function running during the lab. Complete the function Lab2 by writing the two sub-functions

make_chroma_model, and

find_chroma

The specifications of these functions can be found in the downloadable file Lab2.m

What to do

Firstly have a look at the Lab3 file. Run it and see what it does. First it defines some constants num_bins and gsize. Then it loads an image and converts it to double in the range [0,1], but leaves it in RGB format. It then crops a region defined by the user.

While you write and debugging this program it is convenient not to have to select a region each time you run the program. Comment out the lines that display the prompt to the user and interactively crop the image, we'll enable them again later once the code's working. For the meantime crop the image automatically like this:

sample_colour = im_RGB(130:150,90:138,:);

This takes rows 130 to 150, columns 90 to 138, and all 3 colour channels. Notice that the

':' is used to mean 'everything inbetween' when it's between two indexes, or 'everything' when it's on it's own.

1 Colour has 3 channels, eg RGB, HSV. Chrominance is a two channel derivative of a colour that is independent of intensity. See lecture on Colour theory.

2 Now let's start on the function make_chroma_model. Firstly we need to convert from RGB colour space to CIE Lab colour space using RGB2Lab.m,

[L,a_chroma,b_chroma] = RGB2Lab(sample_colour);

RGB2Lab returns real a,b chrominance values in the range [-120,120] . We want to use these as indexes to an accumulator array, so we need to convert them to integers in the range [0, num_bins], where num_bins is a constant defining the size of each dimension of our accumulator array. To do this we will write a very short sub-function.

Write a sub-function ab2ind that is passed 2 parameters ab_chroma and num_bins and returns an index ind. This will only take two lines. Firstly convert ab_chroma from the range [-120,120] to [0,1].

ab_01 = ((ab_chroma)+120)/240;

Secondly discretise this into an integer index ind in the range [1,num_bins].

ind = round(ab_01*(num_bins-1)) + 1;

round rounds to the nearest integer. Note the minus 1 and plus 1 that are necessary to firstly scale to the range [0, num_bins-1] then increase this to [1, num_bins].

Getting back to make_chroma_model, we can now call our new sub-function to convert our a,b chrominance values to indexes for the accumulator array, e.g. for

a_chroma

a_ind = ab2ind(a_chroma, num_bins);

Now we are ready to start building the skin chrominance model. Create an accumulator array, this will be a num_bins × num_bins matrix of zeroes, use the zeros function to do this, call this matrix accum_array. We will use this for counting the occurrences of different chroma pairs and it will form the basis of our skin chrominance model.

Now we need to count the number of occurrences of each chroma pair. To do this you will need to use for loops to consider every pixel in the image. Look at the a find and b find values of each pixel and increment the appropriate cell in the accumulator array.

Done that? Have a look at your result using imagesc as follows, figure;

imagesc(accum_array); axis image;

xlabel('a'); ylabel('b'); title('Points in ab space');

 


Related Discussions:- Detecting skin in colour images

Liang barsky line clipping algorithm, Liang Barsky line clipping algorithm ...

Liang Barsky line clipping algorithm : The algorithm uses parametric form of the line segment.  Four inequalities are created using the parametric form of the line segments.  Th

Area-subdivision method, Area-Subdivision method This method is a ty...

Area-Subdivision method This method is a type of an image-space method although uses object-space operations re-ordering or sorting of surfaces as per to depth. Area sub-div

Low level techniques or motion specific, Low Level Techniques or Motion Spe...

Low Level Techniques or Motion Specific These techniques are utilized to control the motion of any graphic element in any animation scene completely. These techniques are also

What are the important properties of bezier curve, What are the important p...

What are the important properties of Bezier Curve?  It requires only four control points It always passes by the first and last control points The curve lies enti

What do you meant by the term typography, Question 1: (a) What do you m...

Question 1: (a) What do you meant by the term typography and what is its main purpose? (b) Differentiate between typeface and font using examples. (c) Design knows many diffe

Cases for digital differential analyzer algorithm, Cases for Digital Differ...

Cases for Digital Differential Analyzer Algorithm 1)  If in case 1, we plot the line another way round that is, moving in y direction via 1 unit every time and after that hunt

Discuss in detail about rendering, Discuss in detail about rendering Co...

Discuss in detail about rendering Computer animation uses a technique termed as avars (animation variable) where starting point is generally a series of stick figures; for exam

Determine the steps uses in cohen sutherland line clipping, Steps uses in t...

Steps uses in the Cohen Sutherland Line Clipping Algorithm are: Figure: Steps for Cohen Sutherland Line Clipping STEP 1: Input:  x L , x R , y T , y B

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd