Click here to Skip to main content
15,892,965 members
Articles / Programming Languages / C++
Tip/Trick

Detect and Recognize Faces using OpenCV for Beginners - Step by Step

Rate me:
Please Sign up or sign in to vote.
4.86/5 (24 votes)
17 Sep 2013CPOL3 min read 272.9K   9.6K   64   39
How to detect and recognize faces using OpenCV (step by step instructions for beginners)

Introduction

I have to face many difficult situations when I configure OpenCV on Windows 7 using Visual Studio 2012, install Python to run the script crop_face.py, and create test data to detect and recognize my faces. So I decided to write out my results from beginning to end to detect and recognize my faces. I hope this report will be useful for beginners to study OpenCV.

The content of this report is to guide in a step by step manner to enable the reader to configure and run OpenCV on Windows. I do not focus on explaining the meaning of OpenCV library. You can get more details about OpenCV here.

I have copied all the source code for this report from this article and refer to the guide to configure OpenCV on Windows from many other websites.

In this report, I used OpenCV 2.4.5 on Windows 7 using Visual Studio 2012.

Let’s start.

Step 1: Download OpenCV 2.4.5

You can download OpenCV2.4.5 on Windows from here.

Image 1

You extract OpenCV-2.4.5 with the specified path. For example:

Image 2

Step 2: Create a New C++ Project in Visual Studio 2012

Open Visual Studio 2012.

Select File -> New -> Project

Create empty project Win32 Application in Visual C++.

Create a new file *.cpp. I named it facerec_video.cpp.

Copy the source code src/facerec_video.cpp from here.

Please change this source code:

C++
#include "opencv2/core.hpp"
#include "opencv2/contrib.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/objdetect.hpp"

to:

C++
#include <opencv2/core/core.hpp>
#include <opencv2/contrib/contrib.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/objdetect/objdetect.hpp>

Step 3: Configure OpenCV in Visual Studio 2012

3.1. Configuration Properties -> C/C++ -> General -> Additional Include Directories

Add your OpenCV path to Additional Include Directories:

Image 3

3.2. Linker -> General

Image 4

3.3 Linker -> Input

Image 5

Please press F7 -> Build successful (If your project has an error, please review from step 1 to step 3 carefully.)

Step 4: Setup Windows Environment

Control Panel\All Control Panel Items\System

Click ‘Advanced system settings’

  • Click ‘Environment Variables’ in Tab Advanced
  • Click New… in ‘User variables for Administrator’
    • Variable name: OPENCV_DIR
    • Variable value: D:\01_baotd1\00_OpenSource\OpenCV_245\build
  • Select Path in ‘System Variables’ and click Edit…
  • Add to the end: ;%OPENCV_DIR%\x86\vc11\bin
Note

If you cannot run the OpenCV, you must restart your computer or your Visual Studio.

Step 5: Install Python to run script crop_face.py

In this report, I used Python and library image as follows:

  • python-2.7
  • PIL-1.1.7.win32-py2.7

Step 6: Create Test Data to OpenCV Recognize Your Faces

In order for OpenCV to recognize your faces, you need to create your faces. You should prepare one or more of your pictures with extensions *.jpg (OpenCV can detect and recognize more image types. In my report, I used image *.jpg) and placed them in one folder. In order to run script crop_face.py correctly, you must provide the position of left eye and right eye. I used Paint to get the position of my left eye and right eye. You move your mouse to the left eye position, the status bar of Paint will display the position (x,y) of left eye. Please note this position. And do the same process for right eye and other images. Please take a look at my example below:

Image 6

I updated the script crop_face.py for creating image easily. I attached the updated script in this report. Here is the example to run crop_face.py on Windows 7:

Image 7

Step 7: Create csv.ext File

Here is the example of csv.ext file. When you crop your faces successfully, you should put all your crop faces to one folder. Please notice that the csv.ext file must contain at least two objects.

 Image 8

Step 8: Run and Enjoy

In order to easily run, I modified the original source code as follows (I do not like to run the application with command line):

Image 9 

F5 and enjoy. 

Image 10

Conclusion

This is the first report that I created on CodeProject. I hope beginners will get some benefit from this report.

License

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


Written By
Vietnam Vietnam
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: Exception thrown Pin
DangBao18-Apr-14 3:46
DangBao18-Apr-14 3:46 
Questionadding group classification Pin
Hao Ran28-Mar-14 4:56
Hao Ran28-Mar-14 4:56 
AnswerRe: adding group classification Pin
DangBao28-Mar-14 13:22
DangBao28-Mar-14 13:22 
QuestionBlank Grey Screen Pin
Member 1055669025-Mar-14 4:37
Member 1055669025-Mar-14 4:37 
AnswerRe: Blank Grey Screen Pin
DangBao28-Mar-14 13:13
DangBao28-Mar-14 13:13 
GeneralThe Aligning Face Image (crop_face.py) Pin
Member 1060127416-Feb-14 21:17
Member 1060127416-Feb-14 21:17 
GeneralRe: The Aligning Face Image (crop_face.py) Pin
DangBao17-Feb-14 3:35
DangBao17-Feb-14 3:35 
Questionthanks Pin
tonylander7-Jan-14 8:19
tonylander7-Jan-14 8:19 
QuestionFace detection and recognition Pin
Deepika Ganesan6-Nov-13 1:05
Deepika Ganesan6-Nov-13 1:05 
AnswerRe: Face detection and recognition Pin
DangBao6-Nov-13 10:51
DangBao6-Nov-13 10:51 
Questionmaybe i should learn python well Pin
qianlizhixing 14-Oct-13 16:40
qianlizhixing 14-Oct-13 16:40 
Questioninteresting article! ^^ Pin
July Kieu20-Sep-13 6:45
July Kieu20-Sep-13 6:45 
GeneralVery good Pin
Nhat Luu19-Sep-13 16:42
Nhat Luu19-Sep-13 16:42 
GeneralRe: Very good Pin
fittam19-Sep-13 19:13
fittam19-Sep-13 19:13 

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.