Click here to Skip to main content
15,867,330 members
Articles / Productivity Apps and Services / Microsoft Office / Microsoft Access

Human Emotion Detection from Image

Rate me:
Please Sign up or sign in to vote.
4.73/5 (94 votes)
20 Sep 2010CPOL9 min read 476.2K   25.1K   129   183
It can detect human emotion from image

Introduction

This code can detect human emotion from image. First, it takes an image, then by skin color segmentation, it detects human skin color, then it detect human face. Then it separates the eyes & lip from the face. Then it draws bezier curve for eyes & lips. Then it compares the bezier curve of eyes and lips to the bezier curves of eyes & lips that are stored in the data base. Then it finds the nearest bezier curse from the data base & gives that data base stored bezier curve emotion as this image emotion.

How Does It Work?

Skin Color Segmentation

For skin color segmentation, first we contrast the image. Then we perform skin color segmentation.

Pic-1.PNG

Then, we have to find the largest connected region. Then we have to check the probability to become a face of the largest connected region. If the largest connected region has the probability to become a face, then it will open a new form with the largest connected region. If the largest connected regions height & width is larger or equal than 50 and the ratio of height/width is between 1 to 2, then it may be face.

Pic-2.PNG

Face Detection

For face detection, first we convert binary image from RGB image. For converting binary image, we calculate the average value of RGB for each pixel and if the average value is below than 110, we replace it by black pixel and otherwise we replace it by white pixel. By this method, we get a binary image from RGB image.

pic-10.PNG

Then, we try to find the forehead from the binary image. We start scan from the middle of the image, then want to find a continuous white pixels after a continuous black pixel. Then we want to find the maximum width of the white pixel by searching vertical both left and right site. Then, if the new width is smaller half of the previous maximum width, then we break the scan because if we reach the eyebrow then this situation will arise. Then we cut the face from the starting position of the forehead and its high will be 1.5 multiply of its width.

pic-11.PNG pic-12.PNG

In the figure, X will be equal to the maximum width of the forehead. Then we will have an image which will contain only eyes, nose and lip. Then we will cut the RGB image according to the binary image.

Eyes Detection

For eyes detection, we convert the RGB face to the binary face. Now, we consider the face width by W. We scan from the W/4 to (W-W/4) to find the middle position of the two eyes. The highest white continuous pixel along the height between the ranges is the middle position of the two eyes.

pic-13.PNG

Then we find the starting high or upper position of the two eyebrows by searching vertical. For left eye, we search w/8 to mid and for right eye we search mid to w – w/8. Here w is the width of the image and mid is the middle position of the two eyes. There may be some white pixels between the eyebrow and the eye. To make the eyebrow and eye connected, we place some continuous black pixels vertically from eyebrow to the eye. For left eye, the vertical black pixel-lines are placed in between mid/2 to mid/4 and for right eye the lines are in between mid+(w-mid)/ 4 to mid+3*(w-mid)/ 4 and height of the black pixel-lines are from the eyebrow starting height to (h- eyebrow starting position)/4. Here w is the width of the image and mid is the middle position of the two eyes and h is the height of the image. Then we find the lower position of the two eyes by searching black pixel vertically. For left eye, we search from the mid/4 to mid - mid/4 width. And for right eye, we search mid + (w-mid)/ 4 to mid+3*(w- mid)/ 4 width from image lower end to starting position of the eyebrow. Then we find the right side of the left eye by searching black pixel horizontally from the mid position to the starting position of black pixels in between the upper position and lower position of the left eye. And left side for right eye we search mid to the starting position of black pixels in between the upper position and lower position of right eye. The left side of the left eye is the starting width of the image and the right side of the right eye is the ending width of the image. Then we cut the upper position, lower position, left side and the right side of the two eyes from the RGB image.

pic-14.PNG

Lip Detection

For lip detection, we determine the lip box. And we consider that lip must be inside the lip box. So, first we determine the distance between the forehead and eyes. Then we add the distance with the lower height of the eye to determine the upper height of the box which will contain the lip. Now, the starting point of the box will be the ¼ position of the left eye box and ending point will be the ¾ position of the right eye box. And the ending height of the box will be the lower end of the face image. So, this box will contain only lip and may some part of the nose. Then we will cut the RGB image according the box.

pic-15.PNG

So, for detection eyes and lip, we only need to convert binary image from RGB image and some searching among the binary image.

pic-16.PNG

Apply Bezier Curve on Lip

In the lip box, there is lip and may be some part of nose. So, around the box there is skin color or the skin. So, we convert the skin pixel to white pixel and other pixel as black. We also find those pixels which are similar to skin pixels and convert them to white pixel. Here, if two pixels RGB values difference is less than or equal 10, then we called them similar pixel. Here, we use histogram for finding the distance between the lower average RGB value and higher average RGB value. If the distance is less than 70, then we use 7 for finding similar pixel and if the distance is getter than or equal 70 then we use 10 for finding similar pixel. So, the value for finding similar pixel depends on the quality of the image. If the image quality is high, we use 7 for finding similar pixel and if the image quality is low, we use 10.

pic-17.PNG

So, in the binary image, there are black regions on lip, nose and may some other little part which have a little different than skin color. Then we apply big connected region for finding the black region which contain lip in binary image. And we are sure that the big connected region is the lip because in the lip box, lip is the largest thing which is different than skin.

pic-18.PNG

Then we have to apply Bezier curve on the binary lip. For apply Bezier curve, we find the starting and ending pixel of the lip in horizontal. Then we draw two tangents on upper lip from the starting and ending pixel and also find two points on the tangent which is not the part of the lip. For the lower lip, we find two point similar process of the upper lip. We use Cubic Bezier curves for draw the Bezier curve of the lip. We draw two Bezier curve for the lip, one for upper lip and one for lower lip.

pic-19.PNG

Apply Bezier Curve on Eye

For apply Bezier curve on eyes, first we have to remove eyebrow from eye. For remove eyebrow, we search 1st continuous black pixel then continuous white pixel and then continuous black pixel from the binary image of the eye box. Then we remove the 1st continuous black pixel from the box and then we get the box which only contains the eye.

pic-20.PNG pic-21.PNG

Now, the eye box which contains only eye, has some skin or skin color around the box. So, we apply similar skin color like the lip for finding the region of eye. Then we apply big connect for finding the highest connected region and this is the eye because in the eye box, eye is the biggest thing which is not similar to the skin color.

pic-22.PNG pic-23.PNG

Then we apply the Bezier curve on the eye box, similar to the lip. Then we get the shape of the eye.

pic-24.PNG

Database and Training

In our database, there are two tables. One table “Person” is for storing the name of people and their index of 4 kinds of emotion which are stored in other table “Position”. In the “Position” table, for each index, there are 6 control points for lip Bezier curve, 6 control points for left eye Bezier curve, 6 control points for right eye Bezier curve, lip height and width, left eye height and width and right eye height and width. So, by this method, the program learns the emotion of the people.

pic-25.PNG

Emotion Detection

For emotion detection of an image, we have to find the Bezier curve of the lip, left eye and right eye. Then we convert each width of the Bezier curve to 100 and height according to its width. If the person’s emotion information is available in the database, then the program will match which emotion’s height is nearest the current height and the program will give the nearest emotion as output.

pic-26.PNG

If the person’s emotion information is not available in the database, then the program calculates the average height for each emotion in the database for all people and then get a decision according to the average height.

pic-27.PNG

Using the Program

We can use it in this way:

  1. Select an image by clicking Browse button.
  2. Then click Skin Color button.
  3. Then click Connected button.
  4. Then click Next button, then it will open a new window.
  5. Then click Binary Image button.
  6. Then click Face button.
  7. Then click eye lip button.
  8. Then click Left_Eye_Next button.
  9. Then click Left_Eye_Next button again.
  10. Then click Left_Eye_Next button again.
  11. Then click Left_Eye_Next button again.
  12. Then click Right_Eye_Next button.
  13. Then click Right_Eye_Next button again.
  14. Then click Right_Eye_Next button again.
  15. Then click Right_Eye_Next button again.
  16. Then click Lip_Next button.
  17. Then click Lip_Next button again.
  18. Then click Lip_Next button again.
  19. Then click Emotion button for show the emotion.
  20. If you want to enter a face result to the database then, write the person's name in the text box & select a emotion from the combo box then click the Entry button.

History

  • 18 September, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) TigerIT Bangladesh Ltd.
Bangladesh Bangladesh
I am Committed to professionalism, eagerness to learn and has strong passion in software engineering.

Comments and Discussions

 
GeneralRe: My vote of 5 Pin
shakil03040039-Dec-12 17:50
shakil03040039-Dec-12 17:50 
GeneralRe: My vote of 5 Pin
warissalam28-Mar-13 0:05
warissalam28-Mar-13 0:05 
Questionrequest Pin
bapi mishra6-Dec-12 18:49
bapi mishra6-Dec-12 18:49 
AnswerRe: request Pin
shakil03040036-Dec-12 20:00
shakil03040036-Dec-12 20:00 
Questionalgorithm Pin
Garvanlieva24-Sep-12 12:45
Garvanlieva24-Sep-12 12:45 
AnswerRe: algorithm Pin
shakil030400326-Sep-12 1:09
shakil030400326-Sep-12 1:09 
GeneralRe: algorithm Pin
Garvanlieva26-Sep-12 2:09
Garvanlieva26-Sep-12 2:09 
GeneralRe: algorithm Pin
shakil030400326-Sep-12 19:23
shakil030400326-Sep-12 19:23 
BFS & linear searching.
Md. Shakil Ahmed.

GeneralRe: algorithm Pin
Garvanlieva27-Sep-12 1:37
Garvanlieva27-Sep-12 1:37 
QuestionNice project Pin
staffordmichahial11-Sep-12 15:20
staffordmichahial11-Sep-12 15:20 
AnswerRe: Nice project Pin
shakil030400318-Sep-12 19:20
shakil030400318-Sep-12 19:20 
Questiondatabase for this project Pin
vlatko vukovic31-Aug-12 2:02
vlatko vukovic31-Aug-12 2:02 
Questionhelp Pin
ashiteedesai26-Aug-12 22:08
ashiteedesai26-Aug-12 22:08 
Questionhelp!! Pin
harshada15623-Aug-12 4:45
harshada15623-Aug-12 4:45 
AnswerRe: help!! Pin
shakil030400326-Aug-12 20:46
shakil030400326-Aug-12 20:46 
QuestionSuperimpose Emotion Pin
nik92881-Aug-12 6:23
nik92881-Aug-12 6:23 
AnswerRe: Superimpose Emotion Pin
shakil03040038-Aug-12 4:47
shakil03040038-Aug-12 4:47 
Questionhelp me please... Pin
rumahkalung3-Jul-12 5:25
rumahkalung3-Jul-12 5:25 
AnswerRe: help me please... Pin
shakil03040038-Aug-12 4:40
shakil03040038-Aug-12 4:40 
Questiondetection rate Pin
multik_shpultik9-Jun-12 22:55
multik_shpultik9-Jun-12 22:55 
AnswerRe: detection rate Pin
shakil03040032-Jul-12 21:10
shakil03040032-Jul-12 21:10 
QuestiondLL Pin
Member 880270017-May-12 0:49
Member 880270017-May-12 0:49 
AnswerRe: dLL Pin
shakil030400323-May-12 17:54
shakil030400323-May-12 17:54 
Questionfor specific images Pin
Member 880270017-May-12 0:45
Member 880270017-May-12 0:45 
AnswerRe: for specific images Pin
shakil030400323-May-12 17:40
shakil030400323-May-12 17:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.