码迷,mamicode.com
首页 > 编程语言 > 详细

OpenCV C++常用功能介绍

时间:2019-08-02 20:11:05      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:lease   load   wait   wim   release   cvs   The   enc   div   

显示图片

IplImage* img = cvLoadImage("~/temp.jpeg", 1);
//create a window to display the image
cvNamedWindow("picture", 1);
//show the image in the window
cvShowImage("picture", img);
//wait for the user to hit a key
cvWaitKey(0);
//delete the image and window
cvReleaseImage(&img);
cvDestroyWindow("picture");

  

OpenCV C++常用功能介绍

标签:lease   load   wait   wim   release   cvs   The   enc   div   

原文地址:https://www.cnblogs.com/alanfang/p/11290876.html

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