how to get the projections of the training data.
I used createEigenFaceRecognizer(), but I don't know how to get the projections of the training data, please help me
since cv::FaceRecognizer inherits from cv::Algorithm, you should be able to access it via:
Mat proj = reco.get("projections");
(look at the bottom of contrib/src/facerec.cpp)
Asked: 2013-02-28 22:13:15 -0600
Seen: 166 times
Last updated: Mar 01 '13