Is Feature extraction done in FaceRecognizer
I am currently using the FaceRecognizer
and I am not sure about if the feature extraction is done while I train a set of images with its corresponding subjects. I assume it does but I want to make sure because I can't find it anywhere.
I am sure that it does train the classifier since I am saving it in a path which contains a big XML file.
So the question, does http://docs.opencv.org/doc/tutorials/... happen in http://docs.opencv.org/modules/contri... ?
Thanks in advance
If you use feature extraction it will have problems when you try to match a face in which you do not have features for. I tried doing SURF and SIFT on texture matching and it does not turn out well. The feature you are looking for is probably local binary pattern that you can extract to match for a similar histogram. Histogram comparison should work better unless someone prove me wrong.