如何比较两张人脸图像,无论它们是否属于同一个人。
让我解释:
该代码将获取两个图像作为输入并识别并比较它们。如果它属于同一个人(即使在不同的时间拍摄),它将返回 true 或 false。
像这样:
boolean Compare (Image a,Image b)
{
if (Both_are_same-person's)
return true;
else return false;
}
给定的图像可以是任何格式,例如 jpg、png、bmp、tiff。