FaceRecognition Class
Hi, I'am develop a FaceRecognizer on iOS. And I've a doubt, the Face Recognition algorithm in the class need a pre processing? Or the class do that for me?
Hi, I'am develop a FaceRecognizer on iOS. And I've a doubt, the Face Recognition algorithm in the class need a pre processing? Or the class do that for me?
For the current algorithms you have to pass your input images as grayscale. You can use cv::cvtColor to convert color images into their grayscale representation:
Algorithms like Eigenfaces and Fisherfaces require your training data to be of equal size. You can use cv::resize to resize your images:
Pay special attention to the documentation on cv::FaceRecognizer at:
Just look at the full source code listing on "Face Recognition in Videos" for example, because all preprocessing is done in there, too.
I am working on some algorithms for head pose estimation, but there's nothing I can release yet. Keep an eye on my blog,
Asked: 2012-09-11 14:43:41 -0600
Seen: 497 times
Last updated: Sep 11 '12
How to compile Python bindings for FaceRecognizer
createEigenFaceRecognizer no attribute error
python FaceRecognizer questions
How to insert array of <int> into CvArr
Need to .pgm image of specific size for FaceRecognizer in python
face recognition (different image size)
Interpreting OpenCV FaceRecognition predicted confidence values