ошибка C3861: 'findEssentialMat': идентификатор не найден - Opencv 2.4.9 с Visual C++ 2010
В моем коде есть следующее:
#include <opencv2/core/core.hpp>
#include "opencv2/video/tracking.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/calib3d/calib3d.hpp"
и код:
//recovering the pose and the essential matrix
Mat E, R, t, mask;
E = findEssentialMat(points2, points1, focal, pp, RANSAC, 0.999, 1.0, mask);
recoverPose(E, points2, points1, R, t, focal, pp, mask);
Но с Opencv 2.4.9 с Visual C++ 2010 я получил ошибки компиляции:
error C3861: 'findEssentialMat': identifier not found
error C3861: 'recoverPose': identifier not found
Как их решить?
Спасибо!