0

I am working with face recognition using Eigenface algorithm. But I need to recognize a face using distances of parts of the face or something like calculating values. But now I have some points of facial landmarks. And how they can be used to recognize a face?

enter image description here

Vladimir Salin
  • 2,951
  • 2
  • 36
  • 49

1 Answers1

0

When face pose to different directions, or do kinds of facial emotion, the landmarks are different. So landmarks is not good for face recognition. In my knowledge, the face landmarks mainly for emotion analysis, pose estimation, not for recognition.


Here is a (open?) handbook(2011) of face recognition searched by Google.

https://cours.etsmtl.ca/sys828/REFS/Intro/Hanbook%20of%20Face%20Recognition.pdf

A table of face recognition comparison:

enter image description here

In OpenCV, mainly face recognition algorithms available now are:

Eigenfaces (see EigenFaceRecognizer::create)
Fisherfaces (see FisherFaceRecognizer::create)
Local Binary Patterns Histograms (see LBPHFaceRecognizer::create)

See this link : https://docs.opencv.org/3.3.1/da/d60/tutorial_face_main.html

Kinght 金
  • 17,681
  • 4
  • 60
  • 74