How can I compare two face images, whether they belong to same person or not.
Let me 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;
}
Given images may be in any format like jpg,png,bmp,tiff.