I'm working with eigenfaces for a facial recognition program I am writing. I have a couple questions about how eigenfaces are actually generated:

  1. Are they generated from a lot of pictures of different people, or a lot of pictures of the same person?

  2. Do these people need to include the people you want to recognize? If not, then how would any type of comparison be made?

  3. Is an eigenface determined for every image you provide, or do multiple pictures go towards creating one eigenface?

This is all about the generation or learning phase of the eigenfaces. Thanks for any help or pointing me in the right direction!

link|improve this question

40% accept rate
Edit: Thanks for the good answers. The goal I'm trying to achieve is for a picture to be matched against a set of faces and determine which one is the closest. It doesn't need to be a complete match, I just want to get whichever one is closest to the same. I think Eigenfaces would still work for this, right? – Kevin Jun 23 '11 at 15:58
feedback

2 Answers

up vote 1 down vote accepted
  1. Many different people are highly necessary to achieve support to cover all possible faces.
  2. No need for that, although you need to represent all dimensions. A good analogy is to barycentric coordinates for describing the location of a point in a triangle. You are getting a weighted average to the vertices. If you don't have sufficient vector support (for example, only having two points), then you can't describe points that lie outside the line no matter how you play with the weighted average. This is essentially bjoernz's point for Caucasian vs. Asian faces. Note that this analogy is a gross simplification. The weights in eigenfaces are actually more like PCA or Fourier coefficients.
  3. Each image gets turned into an eigenface which is a vector of principal components.

Nota bene: you need very good registration of the faces. Eigenfaces is notoriously bad about translation/rotation invariance. Your results are likely to be terrible unless you register well. The original Turk and Pentland paper was groundbreaking not just because of the technique but for the scale and quality of data set they gathered which enabled said technique.

link|improve this answer
ad 3: there is no 1-1 relation between images and eigenfaces. You take a set of images and get a set of eigenfaces. The best way to think about this is that each eigenface is a picture of some "features" that images of the face of several people have in common. i.e. an oval with three dark spots (eyes and shadow under the nose), an oval with a protrusion on either side (ears) etc. – jilles de wit Jun 23 '11 at 14:42
feedback

I actually find the description for Eigenfaces on Wikipedia quite useful. To answer your questions:

  1. Yes, you should take pictures from many different people.
  2. No, the eigenfaces basically give you a way to describe other faces. You can think of the eigenfaces as a basis in a vector space. You have to make sure that you can describe the face that you want to recognise with the eigenfaces that you have. If you only use Caucasian faces to determine the eigenfaces, you might have problems describing a variety of Asian faces with them and vice versa.
  3. The eigenfaces are computed from a set of images, i.e. multiple images lead to multiple eigenfaces.

Edit: Answering the question, that Kevin added in the comment to the question:

The idea behind using eigenfaces, is that you can express an image of a face by mixing eigenfaces together. Let's suppose you have three eigenfaces ef_1, ef_2, ef_3 and you have an image of a face f_1 = a_1 * ef_1 + a_2 * ef_2 + a_3 * ef_3. The eigenfaces do not change, regardless which face you want to express with them, however, the coefficients a = (a_1, a_2, a_3) are characteristic to the face. This is what you would use to compare two faces.

But in order to get to the stage where you can use eigenfaces, you first have to align (register) an observed face with the eigenfaces, which is not trivial and a completely different topic (see pxu's answer).

P.S.: I recommend, that you keep an eye on Area 51: Computer Vision, which is a Stack Overflow sister site about computer vision in the making.

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.