Dear all, Right now I am developing a face recognition system by using OpenCV, and what I want to
implement is to find the similarity of the given face and the faces in database, and can list
the result like this:
face1: 95%
face2: 93%
face3: 92%
face4: 80%
I found a class named FaceRecognizer in opencv, and it has some interface like train and
predict, but finally I found that this two interface only can judge whether a face is belong to
the database or not, can not do what I want to do.
Is there any other interface can achieve my goal?