Click here to Skip to main content
15,881,172 members
Articles / Multimedia / GDI+

Face and Eyes Detection Using OpenCV

Rate me:
Please Sign up or sign in to vote.
3.58/5 (38 votes)
7 Aug 2008CPOL2 min read 972.8K   82.8K   193   200
This article demonstrates how to perform human face and eyes detection on images using OpenCV in .NET
Cascades

Introduction

This article is an extension of an article that I posted on CodeProject earlier. This project demonstrates how to perform human face and eye detection using OpenCV in .NET. The detection is performed using Haar Cascades that I acquired from two different sources (see References).

Background

While working on a face recognition project, I stumbled across a huge problem; the preprocessing phase required face alignment for improved result. This step required eye coordinates in order to stretch/rotate the image to a standard size before performing actual face recognition training/projection. For experimentation, the eye-coordinates could be entered manually but that would never be a practical solution. Exploring my options, I found OpenCV and the Haar Cascades to perform this task for me.

Using the Code

The project is mainly a managed VC++.NET class library, that can be consumed from C#/VC++ .NET. A Test application demonstrates the typical use of this library. It is to be noted that Version 2 requires the 'Cascades' folder in the Current Execution Path folder.

There are mainly two functions that are used to perform face and eye detection. Observe the following code:

C#
// the variable faces contains the number of detected faces in the image
int faces = objFaceDetector.WrapDetectFaces(lastPic);

int lx, ly, rx, ry, res;

for(int f = 0; f < faces; f++)
{ 
    //The face coordinates are indexed, max index == 4
    objFaceDetector.WrapGetFaceCordinates(f, &lx, &ly, &rx, &ry);
<< Source Code For Drawing Face Rectangle >>
    //returns -1 if cannot detect eyes for this face index
    res = objFaceDetector.WrapGetEyeCordinates(f, &lx, &ly, &rx, &ry);
<< Source Code For Drawing Eye Crosses >>
}

The use of this library is quite simple and may find its application in face recognition and human interaction projects. Someone suggested to use this for detecting if the driver is dozing while driving, BUT let me remind you that there are no guarantees from me, Opencv, Opencv developer community or any other party for the results of this code. The author will not be liable for any harm, injury and/or loss caused directly or indirectly by using this code in any way.

Points of Interest

The accuracy of Eye cascades was further corrected by a writing a code snippet that simply checks if the suggested eye coordinates really fall in the face region. Furthermore, the face region is logically divided into four equal height horizontal strips, the second strip from the top contains the eyes. This strip can be divided into two halves vertically so that each eye will fall in one half. If the detected eye coordinates do not fall in their respective halves, they are discarded. In case of multiple detections in the same region, the object with smaller size is preferred because of empirical reasons. The eye detection is performed using two different Cascades, this proved to give better results than using the Cascade that claims to detect both eyes in one go. Further research may lead you to differ from my suggested approach, you can always provide a feedback.

References

Other Articles by This Author

License

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


Written By
Web Developer
Pakistan Pakistan
BCSE - Software Engineering (2000 - 2004)
Foundation University Institute of Management and Computer Sciences.
Pakistan.

MS - Computer Sciences (2004 - 2005)
Lahore Univeristy of Management Sciences
Pakistan.

Comments and Discussions

 
Generalcode of our project Pin
vedaprakash.M.G3-May-11 21:19
vedaprakash.M.G3-May-11 21:19 
GeneralRe: code of our project Pin
laiza ramal8-Nov-12 3:26
laiza ramal8-Nov-12 3:26 
Generalcannot find clsFaceDetectionWrapper, missing any assembly reference? Pin
Thaanya24-Apr-11 22:09
Thaanya24-Apr-11 22:09 
General0 faces found Pin
1_stev13-Mar-11 10:21
1_stev13-Mar-11 10:21 
Generalfacedetection.dll Pin
1_stev13-Mar-11 10:17
1_stev13-Mar-11 10:17 
Generalhi Pin
1_stev11-Mar-11 6:28
1_stev11-Mar-11 6:28 
Question[ask] expression recognizing Pin
aan8725-Jan-11 20:53
aan8725-Jan-11 20:53 
GeneralErro while building FaceDetection project Pin
SanjayAYadav1-Nov-10 20:49
SanjayAYadav1-Nov-10 20:49 
------ Rebuild All started: Project: FaceDetection, Configuration: Debug Win32 ------
Command line warning D9035: option 'clr:oldsyntax' has been deprecated and will be removed in a future release
clsFaceDetectionWrapper.cpp
FaceLocator.cpp
ObjectLocator.cpp
Generating Code...
C:\OpenCV2.0\lib\cv100.dll : fatal error LNK1107: invalid or corrupt file: cannot read at 0x2C0
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
GeneralError : error LNK1104: cannot open file 'cv.lib' Pin
SanjayAYadav1-Nov-10 19:58
SanjayAYadav1-Nov-10 19:58 
GeneralError in running the sample codes Pin
UpdateAk478-Oct-10 9:55
UpdateAk478-Oct-10 9:55 
Generalvery happay to see article that is posted by my senior Pin
sohaik15-Aug-10 6:51
sohaik15-Aug-10 6:51 
Questionopen cv Pin
jyotsnakathuria3-Aug-10 2:35
jyotsnakathuria3-Aug-10 2:35 
GeneralMy vote of 1 Pin
purohit_rashmi26-Jul-10 18:42
purohit_rashmi26-Jul-10 18:42 
GeneralRe: My vote of 1 Pin
Nasenbaaer31-Aug-10 4:43
Nasenbaaer31-Aug-10 4:43 
QuestionPlease help me: face recognition program for absence system Pin
Alveen Scofield28-May-10 20:02
Alveen Scofield28-May-10 20:02 
AnswerRe: Please help me: face recognition program for absence system Pin
Shervin Emami8-Jun-10 3:17
Shervin Emami8-Jun-10 3:17 
GeneralRe: Please help me: face recognition program for absence system Pin
Alveen Scofield13-Jun-10 3:15
Alveen Scofield13-Jun-10 3:15 
GeneralMy vote of 1 Pin
Shakeel Mumtaz2-Jan-10 20:46
Shakeel Mumtaz2-Jan-10 20:46 
GeneralRe: My vote of 1 Pin
Shakeel Mumtaz2-Jan-10 21:20
Shakeel Mumtaz2-Jan-10 21:20 
GeneralProblem with MFC and vista Pin
dSolariuM30-Oct-09 21:54
dSolariuM30-Oct-09 21:54 
GeneralRe: Problem with MFC and vista Pin
uvik4-Nov-09 22:45
uvik4-Nov-09 22:45 
GeneralRe: Problem with MFC and vista Pin
Zeeshan Ejaz Bhatti27-Nov-09 19:37
Zeeshan Ejaz Bhatti27-Nov-09 19:37 
Generalinstall opencv Pin
tziporah125-Jul-09 21:56
tziporah125-Jul-09 21:56 
GeneralRe: install opencv Pin
uvik28-Sep-09 4:58
uvik28-Sep-09 4:58 
Generalמי עונה ראשון????לא כולם ביחד!!!! Pin
tziporah124-Jul-09 4:38
tziporah124-Jul-09 4:38 

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.