码迷,mamicode.com
首页 > 其他好文 > 详细

Display a picture

时间:2016-02-26 08:09:31      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

摘自 <<Learning OpenCV: Computer Vision in C++ with the OpenCV Library>>

#include "opencv2/highgui/highgui.hpp"

using namespace cv;

int main(int argc, char ** argv)
{
    Mat img = imread(argv[1] - 1);
    if(img.empty())  return -1;

    namedWindow("Example", CV_WINDOW_AUTOSIZE);

    imshow("Example", img);

    waitKey(0);
    destroyWindow("Example");     
}

 

Display a picture

标签:

原文地址:http://www.cnblogs.com/xinxue/p/5219032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!