FSDK_GetMatchingThresholdAtFAR

来源:互联网 发布:centos pdo mysql 安装 编辑:程序博客网 时间:2024/06/07 11:17

FSDK_FaceTemplate template1, template2;
float MatchingThreshold, Smilarity;
FSDK_GetMatchingThresholdAtFAR(0.02, &MatchingThreshold);
FSDK_GetFaceTemplate(img1, &template1);
FSDK_GetFaceTemplate(img2, &template2);
FSDK_MatchFaces(&template1, &template2, &Similarity);
if (Similarity > MatchingThreshold)
printf("Same Person/n");
else
printf("Different Person/n");

原创粉丝点击