I'm trying to build a face recognizer with OpenCV. The basic setup is that the phone will take a picture, generate the feature vector, and send it to a server. The server will be the one that does that actual recognizing.
I have followed the tutorial listed here. With this, I was able to correctly obtain keypoints and create a descriptor based off an image.
So now I have what I believe is the feature vector (descriptor... right?). However, I have been unable to find any tutorial to recognize faces based on this value. I found tutorials based on using the raw images, but I'm trying to not use the image on the server.
Is there any way to do face recognition (eigenfaces, fisherfaces, lbp) using the generated feature vector?