当前位置:  开发笔记 > 编程语言 > 正文

OpenCV:对imread()的未定义引用

如何解决《OpenCV:对imread()的未定义引用》经验,为你挑选了2个好方法。

我在Eclipse Mars中配置了OpenCV 3.1.0.这些是我的配置,

G ++包括:D:/ opencv/build/install/include; GCC包括:D:/ opencv/build/install/include

链接库:libopencv_core310,libopencv_highgui310

链接器库路径:D:/ opencv/build/lib(此目录中的文件类似于libopencv_core310.dll.a)

我收到这样的错误,

imageRead.cpp:15: undefined reference to `cv::imread(cv::String const&, int)'

这是我的imageRead.cpp文件,

#include 
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"

using namespace std;
using namespace cv;

int main(int argc, const char** argv) {
    Mat img = imread("D:/sample.jpg", CV_LOAD_IMAGE_UNCHANGED);
    if (img.empty()) {
        cout << "Error: Image cannot be loaded." << endl;
        system("pause");
        return -1;
    }
    namedWindow("Image Window", CV_WINDOW_AUTOSIZE);
    imshow("Image Window", img);
    if (waitKey() == 27) {
        return -1;
    }
    destroyWindow("Image Window");
    return 0;
}

有人可以帮忙解决这个错误吗?



1> Morris Frank..:

从OpenCV3开始,imread函数驻留在imgcodecs模块中.将opencv_imgcodecs库添加到项目后,Imread应该可以工作(注意:imgcodecs,而不是imcodecs).



2> Oscar Zhou19..:

我建议链接以下库:

opencv_core
opencv_highgui
opencv_imgproc
opencv_imgcodecs

在.cpp文件中,您可以包含这样的内容

    #include 
    #include 
    #include 
    #include 

    using namespace std;
    using namespace cv;

要么

    #include 
    #include 

    using namespace std;
    using namespace cv;

推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有