1 | initial version |
you missed the newly added namespace face
: Ptr<cv::face::FaceRecognizer> faceRecognizer = cv::face::createFisherFaceRecognizer(0, 123.0);
also note, that you have to use cv::Ptr
, you can no more create an instance "on the stack".
2 | No.2 Revision |
you missed the newly added namespace face
: Ptr<cv::face::FaceRecognizer> faceRecognizer = cv::face::createFisherFaceRecognizer(0, 123.0);
also note, that you have to use cv::Ptr
, you can no more create an instance "on the stack".
see updated tutorials and samples
3 | No.3 Revision |
you missed the newly added namespace face
: Ptr<cv::face::FaceRecognizer> faceRecognizer = cv::face::createFisherFaceRecognizer(0, 123.0);
also note, that you have to use cv::Ptr
, you can no more . (you can't create an instance of an interface "on the stack".stack".)
see updated tutorials and samples