imread找不到图像

时间:2015-02-16 07:37:40

标签: c++ visual-studio opencv imread

我使用visual studio 2013和opencv。我运行一个简单的代码来读取图像并显示它。我从Donloads文件中将图像添加到我的项目的资源文件中。当我在代码下面运行时,image.data为空。

  #include "stdafx.h"
   #include <opencv2\core\core.hpp>
  #include <opencv2\highgui\highgui.hpp>
 #include <opencv2\opencv.hpp>


int _tmain(int argc, _TCHAR* argv[])
{

cv::Mat image;
image = cv::imread("im.png", CV_LOAD_IMAGE_COLOR);   // Read the file

if (!image.data)                              // Check for invalid input
{
    std::cout << "Could not open or find the image" << std::endl;
    return -1;
}

cv::namedWindow("Display window", cv::WINDOW_AUTOSIZE);// Create a window for display.
imshow("Display window", image);                   // Show our image inside it.

cv::waitKey(0);                                          // Wait for a keystroke in the window
return 0;

}

2 个答案:

答案 0 :(得分:2)

尝试:C:\\Users\\pr\\Downloads\\im.png如果路径正确则应该有效。

答案 1 :(得分:0)

这是因为VS中的默认工作目录是vcxproj文件的位置(值$(ProjectDir))。

如果您想通过VS(即F5键)启动应用程序,那么您应该覆盖项目的调试参数。例如,您可以通过将Project menu -> Properties -> Configuration properties -> Debugging -> Working directory的值设置为$(OutDir)来将应用程序的工作目录设置为链接器创建的程序(exe)的位置。