1 | initial version |
Try to explicitly point namespace of the opencv_face module
cv::Ptr<cv::face::facerecognizer> model = cv::face::createEigenFaceRecognizer();
2 | No.2 Revision |
Try to explicitly point namespace of the opencv_face module
cv::Ptr<cv::face::facerecognizer> model =
cv::face::createEigenFaceRecognizer();
cv::face::createEigenFaceRecognizer();
3 | No.3 Revision |
Try to explicitly point namespace of the opencv_face module
cv::Ptr<cv::face::facerecognizer>
model = cv::face::createEigenFaceRecognizer(); cv::Ptr<cv::face::FaceRecognizer>