OpenCV : undefined reference to imread()
Asked Answered
P

3

23

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 ?

Parsley answered 28/12, 2015 at 16:30 Comment(3)
It says "Error starting process: Cannot run program"Parsley
that's unrelated to your original question.Urbanna
Try by adding opencv_highgui in linker libray.Inebriety
P
47

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).

Protanopia answered 31/12, 2015 at 12:0 Comment(1)
The actual code is #include <opencv2/imgcodecs.hpp>Septic
S
18

I recommend to link the following libraries:

opencv_core
opencv_highgui
opencv_imgproc
opencv_imgcodecs

And in the .cpp file, you can include like this

    #include <iostream>
    #include <opencv2/core/core.hpp>
    #include <opencv2/highgui/highgui.hpp>
    #include <opencv2/imgproc/imgproc.hpp>

    using namespace std;
    using namespace cv;

Or

    #include <iostream>
    #include <opencv2/opencv.hpp>

    using namespace std;
    using namespace cv;
Spilt answered 22/3, 2017 at 22:36 Comment(0)
P
3

This function is located in opencv_imgcodecs library. It also worths mentioning that you may need to put your object file before libraries in order to link successfully:

g++ -c -I/usr/include/opencv4/opencv -I/usr/include/opencv4 main.cpp
g++ main.o -lopencv_imgcodecs $(OTHER_FLAGS) -o main
Phanotron answered 17/11, 2020 at 20:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.