Face Recognition in OpenCV

后端 未结 3 611
青春惊慌失措
青春惊慌失措 2021-01-07 05:01

I was trying to build a basic Face Recognition system (PCA-Eigenfaces) using OpenCV 2.2 (from Willow Garage). I understand from many of the previous posts on Face Recognitio

相关标签:
3条回答
  • 2021-01-07 05:37

    Update: OpenCV 2.4.2 now comes with the very new cv::FaceRecognizer. Please see the very detailed documentation at:

    • http://docs.opencv.org/trunk/tutorial_face_main.html
    0 讨论(0)
  • 2021-01-07 05:38

    With OpenCV it's easy to get started with face detection. It comes with some predefined sets for feature detection, including face detection.

    You might already know this one: OpenCV Wiki, FaceDetection

    The important functions in this example are cvLoad and cvHaarDetectObjects. The first one loads the classifier and the second one applies it to an image. The standard classifiers work pretty well. Of course you can train your own classifiers, if the standard ones don't fit your purpose.

    As you said there are a lot of algorithms for face detection. Some of them might provide better results, but OpenCV is definitively a good start.

    0 讨论(0)
  • 2021-01-07 05:55

    I worked on a project with CV to recognize facial features. Most people don't understand the difference between Biometrics and Facial Recognition. There is a huge difference based on the fact that Biometrics is mainly based on histogram density matching while Facial Recognition implements this and vector support based on feature recognition from density. Check out the following link. This is the library you want to use if you are pursuing CV and Facial Recognition: www.betaface.com . Oleksander is awesome and based out of Germany, but he answers questions which is nice.

    0 讨论(0)
提交回复
热议问题