OpenCV:无法加载.pgm图像

时间:2014-02-04 14:41:52

标签: c++ opencv

我无法使用此opencv示例加载简单的.pgm图像。我总是得到“无法打开或找到图像”。我使用Visual Studio 2013.为什么会这样?

Mat image;
image = imread("C:\1.pgm", CV_LOAD_IMAGE_COLOR);   // Read the file

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

0 个答案:

没有答案