Issue with reading an image using "cv::imread" function in OpenCv

21,654

Ok, I fixed the problem... Problem arises when you are mixing up release and debug OpenCV libs. I've changed paths and libs names in project properties and "cv::imread" works just fine.

Share:
21,654
Marcin
Author by

Marcin

Warsaw University of Technology.

Updated on July 09, 2022

Comments

  • Marcin
    Marcin almost 2 years

    I have got a problem with some basic OpenCV code. Here is my code:

     cv::Mat src;
     src=imread("Calibration.bmp",0);
    
     if (src.empty())
      cout << "Cannot load image" << " ";
     else
      cout << src.cols << " " << src.rows << " ";
    

    Unfortunatelly cv::imread returns NULL matrix with any kind of input image (I have tried .bmp, .jpg). The filename seems to be working fine (program does not end with error), as using wrong filename generates an error message. I have tried using oldstyle "CvLoadImage" but same result occurred. Does anyone have any idea how to fix this?