Improving eigenFaces by adding negative training images

asked 2016-07-09 09:26:49 -0600

atv gravatar image

updated 2016-07-13 04:56:22 -0600

This might seem like a dumb question but,

I i have 3 sets of images for 3 people in my database, and my recognition values are between 1 and 400, with threshold set at 400, if i add a couple of more people in my database, would that decrease the chance of getting false positives?

Now i currently still get someone who completely does not look like any of the 3 persons at 330, and still classifies as a known person. If i add a more diverse training set, would that be taken into account in calculating EigenFaces?

Thank you for reading.

edit retag flag offensive close merge delete

Comments

imho, you need more images of the same person in the 1st place, 3 is not enough, try more like 10-20.

berak gravatar imageberak ( 2016-07-10 00:38:17 -0600 )edit
1

You misunderstood me, I have 3 sets of pictures comprising of 200 pics each. Sorry if I was unclear.

atv gravatar imageatv ( 2016-07-10 01:30:33 -0600 )edit

ooook, yes, indeed got that wrong. sorry forthe noise, then ;9

berak gravatar imageberak ( 2016-07-10 03:30:49 -0600 )edit

still classifies as a known person

From what I remember eigenfaces always classifies as a known person. It just gives you the most similar. You need to use some sort of confidence value (like the one it returns or something else) to decide how likely the match is.

logidelic gravatar imagelogidelic ( 2016-07-11 09:08:02 -0600 )edit

that's not the problem. The problem is that if i have a brown skin colored person in my training database, then a new untrained person shown to the webcam identifies nelson mandela as that brown person. president putin becomes any old person. etc.

this is really unacceptable and useless, so i'm wondering if i need to increase the variety of my training database to skew the eigenvalue threshold.

atv gravatar imageatv ( 2016-07-13 04:55:28 -0600 )edit

Yep variety in training data is the key to getting a better seperation. Also Eigenfaces might not be the best approach. Certainly compare the obtained accuracy to the Fisherfaces!

StevenPuttemans gravatar imageStevenPuttemans ( 2016-07-15 09:05:05 -0600 )edit

Hasn't anyone out there already done a comprehensive accuracy comparison of the different methods?

logidelic gravatar imagelogidelic ( 2016-07-15 09:15:58 -0600 )edit

Well all comparisons are quite application specific in my experience. That is why you should always redo it for your own setup.

StevenPuttemans gravatar imageStevenPuttemans ( 2016-07-15 09:27:11 -0600 )edit
1

I'm using fisherfaces actually. Thanks for your input Steven. So you're saying add a person or persons (even if I don't want to recognise these) to improve my recognition rates of the others?

I had this idea to mitigate false positives by comparing known versus unknown matches but for that I would need to really track the faces, not just redetect them all the time per frame. Incidentally this would also save me a lot of cpu cycles.

atv gravatar imageatv ( 2016-07-15 11:50:09 -0600 )edit