Reputation: 957
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc_c.h>
using namespace cv;
error C3861: 'matchTemplate': identifier not found
Can anyone help me to solve this problem?
Additional information: I am using OpenCV2.3
thank you for spending time to view and comment my problem
Best Regards Hayk
Upvotes: 0
Views: 929
Reputation: 2036
You need imgproc.hpp included, the one that you included has the C version only : cvMatchTemplate
Upvotes: 2