I am programming a face recognition program using OpenCV.

When generating the eigenfaces:

  • do I need to use a big database of unknown faces ?
  • do I need to use only photos of the people I want my system to recognize ?
  • do I need to use both ?

I am talking about the eigenfaces generation, this is the "learning" step.

And how many photos do I need to use to have decent accuracy ? More like 20, or 2000 ?

Thanks

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted
+50

Eigenfaces works by projecting the faces into a particular "face basis" using principal component analysis or PCA. The basis does not have to include photos of people you want to recognize.

Instead, I would encourage you to train based upon a big database (at least 10k faces) that is well registered (eigenfaces doesn't work well with images that are shifted). The original paper by Turk and Pentland was remarkable partly due to the large pin registered face database they released. I would also say that try to have the lighting normalized to the same between the database and your test inputs.

In terms of testing, first 20 components should be sufficient to reconstruct a human recognizable face and first 100 components should be enough to discriminate between any two face for essentially arbitrarily large dataset.

link|improve this answer
feedback

You don't need too many random faces to compose a human face; somewhere close to 20 should give good results, maybe go with more if you can. They should all be lined up as much as possible to one another, front facing, and photos in grayscale under the same lighting conditions.

link|improve this answer
Thanks for your answer. Do you mean then that I need to use only random faces, not the one I wish to identify ? – Matthieu Mar 16 '11 at 18:00
feedback

you only need pictures of the people you want to detect, dont need any 'random' faces at all

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.