我正在尝试使用OpenCV 2.4.11 C ++ for Visual Studio 2012将彩色图像转换为灰度。我使用以下代码将图像转换为灰度。但是,我无法这样做,因为我无法读取图像。 我收到的消息是“读取图像时出错”,因为img为空。我已将所需的图像存储在exe文件旁边的Debug文件夹中。我还在属性页的Debug部分中提到了图像名称作为命令参数。我也试图将灰度图像存储在磁盘中。提前致谢。代码如下:
#include <stdio.h>
#include <iostream>
#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/nonfree/features2d.hpp"
using namespace cv;
int main(int argc, const char**argv)
{
Mat img=imread("Mountain_8-Bit_Grayscale.jpg", CV_LOAD_IMAGE_GRAYSCALE);
if(img.empty())
{
std::cout<< " --(!) Error reading image " << std::endl;
system("pause");
return -2;
}
namedWindow("MyWindow", CV_WINDOW_AUTOSIZE); //create a window with the name "MyWindow"
imshow("MyWindow", img); //display the image which is stored in the 'img' in the "MyWindow" window
imwrite("image_bw.jpg", img);
waitKey(0);
destroyWindow("MyWindow");
return 0;
}
答案 0 :(得分:0)
您应该尝试使用图像的绝对路径而不是相对路径。其他步骤很好,正确读取图像并正确地给出图像显示和保存命令,存在路径问题。