每次我尝试在 OpenCV 中编译此代码时,我都会收到此错误。我要做的就是创建一个窗口:
//#include <iostream>
//#include <stdio.h>
#include "highgui.h"
int main() {
int cvNamedWindow(const char* name, int flags = CV_WINDOW_AUTOSIZE);
{
cvNamedWindow("sample");
}
cvDestroyWindow("sample");
}
但是我收到了这个错误:
window.cpp:4:21:致命错误:highgui.h:没有这样的文件或目录
我已经签入了必要的文件夹并且highgui.h
安装得非常好。
有什么帮助吗?