我使用 c++ 程序使用 opencv 2.1 进行图像处理。并且该程序具有以下包含文件:
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <math.h>
#include <string.h>
但在调试程序后,我收到错误消息:
致命错误 C1083:无法打开包含文件:'opencv2/core/core.hpp':没有这样的文件或目录。
这与imgproc.hpp和highgui.hpp相同,之后我更改 #include "opencv2/highgui/highgui.hpp"
为#include <highgui.h>
并解决了该错误。
但我找不到imgproc.hpp和highgui.hpp的解决方案,并且 opencv 文件夹中没有名为imgproc.hpp和highgui.hpp的文件。
我该如何解决这个错误?