1 | initial version |
please do not try to modify the #include
like that. you'll have to use #include "opencv2/face.hpp"
and the path to the containing folder has to go into the "Additional Include Paths" of your VS project. it also should point to where you installed your opencv libs (which is probably like: c:/somewhere/opencv/build/install/include), not to the src repository
you have to use the cv::face
namespace: Ptr<face::FaceRecognizer> model = face::createFisherFaceRecognizer();
look at tutorials , (before asking, probably)
2 | No.2 Revision |
please do not try to modify the #include
like that. you'll have to use #include "opencv2/face.hpp"
and the path to the containing folder has to go into the "Additional Include Paths" of your VS project. it also should point to where you installed your opencv libs (which is probably like: c:/somewhere/opencv/build/install/include), not to the src repository
you have to use the cv::face
namespace: Ptr<face::FaceRecognizer> model = face::createFisherFaceRecognizer();
look at tutorials , (before asking, probably)
3 | No.3 Revision |
please do not try to modify the #include
like that. you'll have to use #include "opencv2/face.hpp"
and the path to the containing folder has to go into the "Additional Include Paths" of your VS project. it also should point to where you installed your opencv libs (which is probably like: c:/somewhere/opencv/build/install/include), not to the src repository
you have to use the cv::face
namespace: Ptr<face::FaceRecognizer> model = face::createFisherFaceRecognizer();
4 | No.4 Revision |
please do not try to modify the #include
like that. you'll have to use #include "opencv2/face.hpp"
and the path to the containing folder has to go into the "Additional Include Paths" of your VS project. it also should point to where you installed your opencv libs (which is probably like: c:/somewhere/opencv/build/install/include), not to the src repository
you have to use the cv::face
namespace: Ptr<face::FaceRecognizer> model = face::createFisherFaceRecognizer();
5 | No.5 Revision |
please do not try to modify the #include
like that. you'll have to use #include "opencv2/face.hpp"
and the path to the containing folder has to go into the "Additional Include Paths" of your VS project. it also should point to where you installed your opencv libs (which is probably like: c:/somewhere/opencv/build/install/include), not to the src repository
[edit:] you have to use the cv::face
namespace: Ptr<face::FaceRecognizer> model =
(sorry, had that wrong initially !)face::createFisherFaceRecognizer();face::FisherFaceRecognizer::create();
6 | No.6 Revision |
please do not try to modify the #include
like that. you'll have to use #include "opencv2/face.hpp"
and the path to the containing folder has to go into the "Additional Include Paths" of your VS project. it also should point to where you installed your opencv libs (which is probably like: c:/somewhere/opencv/build/install/include), not to the src repository
[edit:] you have to use the cv::face
namespace: Ptr<face::FaceRecognizer> model = face::FisherFaceRecognizer::create();
(sorry, had that wrong initially !)