| Description |
This zip file contains source code and windows executables for carrying out face detection on a gray scale image. The code implements Viola-Jones adaboosted algorithm for face detection by providing a mex implementation of OpenCV's face detector. Instructions for use and for compiling can be found in the Readme file.
Usage:
FaceDetect (<Haar Cascase XML file>, <Gray scale Image>)
The function returns Nx4 matrix. In case no faces were detected, N=1 and all four entries are -1. Otherwise, N=number of faces in the image and the vector contains the x, y, width and height information of the face.
Example,
A = imread ('lena.jpg', 'JPG');
Img = double (rgb2gray(A));
Face = FaceDetect('haarcascade_frontalface_alt2.xml',Img); |
| Other Files |
haarcascade_frontalface_alt2.xml, bin/cv100.dll, bin/cxcore100.dll, bin/FaceDetect.dll, bin/FaceDetect.mexw32, Include/cv.h, Include/cv.hpp, Include/cvcompat.h, Include/cvtypes.h, Include/cvver.h, Include/cxcore.h, Include/cxcore.hpp, Include/cxerror.h, Include/cxtypes.h, lib/cv.lib, lib/cvhaartraining.lib, lib/cxcore.lib, src/FaceDetect.cpp, lena.jpg, TestFaceDetection.m, Readme.txt
|