1.关键函数
1. 读入图片 imread(图片或位置,显示格式)默认为:IMREAD_COLOR
显示格式:
IMREAD_UNCHANGED =-1 // 8bit, color or not
IMREAD_GRAYSCALE = 0 // 8bit, gray
IMREAD_COLOR = 1 // color
IMREAD_ANYDEPTH = 2 // any depth,
IMREAD_ANYCOLOR = 4 // any color
2.显示图片 imshow(图片的名字,Mat型的图片)
很多的例子里面都加上了namedWindow,但是我发现不加上也没有问题。也许我还没发现吧!发现了更正!
2.代码——显示你输入的图片,并自己命名!
#include <opencv2/core/core.hpp> #include <opencv2\highgui\highgui.hpp> #include <iostream> using namespace cv; using namespace std; int main() { string imgPath; cout<<"Please input a location of a image!:"; cin >>imgPath; Mat image=imread(imgPath );//IMREAD_GRAYSCALE等可选 默认彩色 if(! image.data) { cout <<"This is not a right image input !!! "<<endl; return -1; } //发现下面这一段话即使不用也可以显示,也许在同时显示多张图片的时候有好处吧。 /*namedWindow("image",WINDOW_NORMAL);// WINDOW_AUTOSIZE可选 */ string imagName; cout<<"Please input a name for the image:"<<endl; cin>>imagName; imshow(imagName, image); waitKey(0); return 0; }
C++ opencv快速例子学习——读图显示,布布扣,bubuko.com
原文:http://blog.csdn.net/ikerpeng/article/details/37689993