How can I compare two face images, regardless of whether they belong to the same person or not.
Let me explain:
The code will receive two images as input and recognize them and compare them. If it belongs to the same person (although it takes at different times), it will return true or false.
Like this:
boolean Compare (Image a,Image b) { if (Both_are_same-person's) return true; else return false; }
These images can be in any format, for example jpg, png, bmp, tiff.
source share