opencv读取图片

//OpenCV学习笔记

#include

#include <iostream>

using namespace std;
using namespace cv;
int main()
{
Mat in_image, out_image;

//读取原始图像
//使用相对路径——图片放在.vcxproj文件所在文件夹下
in_image = imread("1.jpg", IMREAD_UNCHANGED);

//检查是否读取图像
if (in_image.empty()) {
	
	cout << "Error! Input image cannot be read...\n";
	return -1;
}

//创建两个具有图像名称的窗口
namedWindow("原图", WINDOW_AUTOSIZE);
namedWindow("灰度图", WINDOW_AUTOSIZE);
//在之前创建的窗口中显示图片
imshow("原图", in_image);
cvtColor(in_image, out_image, COLOR_BGR2GRAY);
imshow("灰度图", out_image);
cout << "Press any key to exit...\n";
waitKey(); // Wait for key press
//写入图像,会在“1.jpg”目录下生成一个“灰度图.jpg”文件
imwrite("灰度图.jpg", out_image);
return 0;

}

你可能感兴趣的:(OpenCV,opencv,计算机视觉,c++)