OpenCV3.10 core.hpp 必须用C++编译

OpenCV3.10 core.hpp must be compiled in C++

我已经安装了 OpenCV 3.10 并将 opencv_world310.lib 链接到 releaseopencv_world310d.lib 进行调试。 此外,我将编译器选项放在搜索目录中 ...opencv\build\include。当我遗漏 #include <opencv2/highgui.hpp 时出现未定义的引用错误。现在我已经包含了它,我的代码如下所示:

#include <stdio.h>
#include "opencv/cv.h"
#include "opencv/highgui.h"
#include <opencv2/highgui.hpp>


int main(void){

printf("HALLO!");


return 0;
}

当我尝试构建它时,core.hpp 打开并出现 error: core.hpp must be compiled in C++。 我在 Codeblocks 中使用 GNU GCC 编译器。 我应该怎么做才能解决这个问题?

检查编译器选项。 Open CV 3.10 C++ API 要求将代码编译为 C++,而不是 C。您可以使用 "CodeBlocks: change project language c and c++" 问题的答案来更改选项。

也使用新的 Open CV 3.10 API

#include <opencv2/opencv.hpp>` 

而不是所有其他 Open CV header 文件。 header 包含核心功能。要启用 highgui 模块,您需要在项目设置中定义 HAVE_OPENCV_HIGHGUI