Rhonda Software

Highest quality full cycle software development.

Expert in areas of Computer Vision, Multimedia, Messaging, Networking and others. Focused on embedded software development. Competent in building cross-platform solutions and distributed SW systems.

Offer standalone custom solutions as well as integration of existing products. Opened for outsourcing services.

Visit us at: http://www.rhondasoftware.com

Face Recognition

Posted on : 10-09-2010 | By : Sergey Koulik | In : Face recognition

6

2D face recognition is an extensively studied, but still evolving subject of research. Various strategies including statistical approaches, hidden Markov models, neural networks, template based and feature based matching have been proposed. Here we briefly present our implementation which is based on past research and achieves state-of-the-art recognition performance on considerably low resolution input facial images.
Our approach can be divided into three independent phases: Facial landmarks library construction (offline), Building of facial descriptor (once per novel image) and Facial descriptors matching.

Face recognition result on live video sequence


Facial landmarks library construction
A set of training images is marked by hand. Coordinates of important facial landmarks (such as lips’ corners, nose tip, etc.) are stored in a database for further processing.
Using information about landmarks position it is easy to geometrically transform and align training images.
Illumination correction is applied to transformed images in order to get rid of shadows and glares and normalize overall exposure.
Gabor jets are then extracted from normalized images in every landmark location. Extracted jets are stored in facial landmarks library for further using during novel images processing.

Building of facial descriptor
Having received a novel facial image we first try to locate approximate eyes position using our hybrid method of Viola-Jones and Bayesian classifier. The purpose why eyes coordinates are required is twofold: they are used to geometrically wrap and align input image and also to get initial estimate of coordinates of other facial landmarks.
Illumination correction and background clipping is then performed.
Starting from approximate eyes position and using samples from facial landmarks library we iteratively find precise locations of all facial landmarks on novel face.
Found landmarks positions are then used to extract Gabor jets and construct informative facial descriptor. Original input image is not required any more after this step.

Facial descriptors matching
The last and the simplest step is matching two facial descriptors which yields a similarity measure between two faces – a real number between 0 (nothing in common) and 1 (complete match). A threshold found by experiment is used to make decision whether the faces belong to the same or different persons.
Descriptors matching is several orders of magnitude faster than descriptor building which makes it possible to match new face against a database of known persons in moderate time.

Some technical details
Working face size: 45×45 px
Descriptor building time: 300ms on P4 1300 MHz (single core).
Descriptors matching: 2ms on P4 1300 MHz (single core).
Recognition rate: Feret fa/fb: 88%, Yale Faces: 86%, Faces in wild: 73%. Both false positives and false negatives considered.

Comments (6)

Hi.
This seems to be pretty neat. Recognition rates are great!
I wonder how you perform the illumination correction though. From my experience, I know it is not an easy task.

Nice job

Nicolas

Hi Nicolas,

We use a modification of TVQI algorithm. For the sake of computation speed we had to drop the fidelity term from the equation. Unfortunately, I cannot go into details any deeper.

can you guide me on face recognition in iOS apps. I want to implement the login using face authentication.

Any suggestions are highly appreciated.

Thanks,
Ganesh

Hi Do you provide SDK for face Recognition? could you please provide trial version?

you can contact me via my mail!

Thanks
Chang

Hi, Do you provide SDK for face Recognition? could you please provide trial version?

you can contact me via my mail!

Thanks
Chang

Hello Sir,

I need to some guidance. I want to know some things about openCV.
Is it possible to use openCV in ios app to implement the face authentication feature.

I was thinking whether we can use the openCV for real time login using face recognition in iOS application.

I will really appreciate if you have any suggestions on this.

Thanks

Write a comment