How can we match two images using Java. I want to make a face recognition application, that will store face of people at some location and then later will check whether a person is a member or not. If the persons face will match a pic already in database, then the person will be authenticated else not. Is there a way to do so.

link|improve this question

74% accept rate
1  
Possible dplicate of stackoverflow.com/questions/1182849/face-detection-in-java – jschoen Oct 21 '10 at 2:02
@Mark A little harsh? It happens. – jschoen Oct 21 '10 at 2:04
Just to be sure, we're talking about matching two different photographs of the same person, yes? – Tony Ennis Oct 21 '10 at 2:55
@Tony Ennis: No. It is possible that I may have 50 users with 50 pics. Now when a user wants to login, I will verify whether the user is a member or not by taking its pics and comparing it to all pics I have in database. If a match is found I will welcome the user else the access will be denied. – Logan Oct 22 '10 at 2:23
What you want to do is not possible to the extent that you can -with any certainty- decide if someone is a member of not just from a picture. You will be letting people in who are not a member, and keeping people out who are. – jilles de wit Oct 25 '10 at 13:27
show 2 more comments
feedback

2 Answers

check this thread for java related face recognition software. You will need to use the Java Advanced Imaging library, which is a pain, but it's doable.

link|improve this answer
feedback

There is a way to do so. It is a well studied research problem. It is called face recognition in a gallery-probe setup. You should perhaps read this article.

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.