我正在将 opencv 与 Visual Studio 2010 Windows 窗体应用程序 C++ 一起使用。但它不允许调用内置函数。它给出了类似的错误
错误 1 错误 C3861: 'cvCvtColor': 找不到标识符 c:\users\ayesha\documents\visual studio 2010\projects\abc\abc\Form1.h 140 1 abc
错误 2 错误 C3861: 'cvCvtPixToPlane': 找不到标识符 c:\users\ayesha\documents\visual studio 2010\projects\abc\abc\Form1.h 146 1 abc
我添加了以下标题
#include "highgui.h"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
谁能告诉我我做错了什么。