Ask Your Question

Ragesh D Antony's profile - activity

2016-04-26 04:05:39 -0600 received badge  Popular Question (source)
2013-08-16 03:31:50 -0600 received badge  Student (source)
2013-07-27 09:51:22 -0600 asked a question How to implement Face Recognition in Java using images?

down vote favorite 1

please tell me how to compare two face images whether they belong to same person or not.

let I explain:::

the code will get two images as input and recognize it and compare them. If it belongs to same person (even though takes at different time) it will return true or else false.

like this...

boolean Compare (Image a,Image b)
{
 if (Both_are_same-person's) 
   return true;
 else return false;
}

I hope you undertsand.

(given images may be in any format like jpg,png,bmp,tiff)

(please don't down vote my question or close it. This is my 1st question)