首页 > 代码库 > C++ opencv快速例子学习——读图显示
C++ opencv快速例子学习——读图显示
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; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。