opencv读取图像文件

#include "stdafx.h"
 
#include <opencv2/opencv.hpp>
 
using namespace std;
using namespace cv;
 
int _tmain(int argc, _TCHAR* argv[])
{
	const char* imagename = "Lena.jpg";
 
	//从文件中读入图像
	Mat img = imread(imagename);
	cout<<"widht:"<<img.size().width<<",height:"<<img.size().height;
	//如果读入图像失败
	if(img.empty())
	{
		fprintf(stderr, "Can not load image %s\n", imagename);
		return -1;
	}
 
	//显示图像
	imshow("image", img);
 
	//此函数等待按键,按键盘任意键就返回
	waitKey();
 
	return 0;
}

 

你可能感兴趣的:(opencv)