Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCV : undefined reference to imread()

Tags:

I have configured OpenCV 3.1.0 in Eclipse Mars. These are my configuration,

G++ includes: D:/opencv/build/install/include; GCC includes: D:/opencv/build/install/include

Linker libraries: libopencv_core310, libopencv_highgui310

Linker libraries path: D:/opencv/build/lib (files in this directory are like libopencv_core310.dll.a)

I am getting an error like this,

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

This is my imageRead.cpp file,

#include <iostream>
#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;
}

Can anyone help with this error ?

like image 254
Shinchan Avatar asked Dec 28 '15 16:12

Shinchan


Video Answer


1 Answers

Since OpenCV3, the imread function resides in the imgcodecs module. Imread should work once you add the opencv_imgcodecs library to your project (note: imgcodecs, not imcodecs).

like image 152
Morris Franken Avatar answered Oct 13 '22 15:10

Morris Franken