OpenCV C++常用功能介绍
Posted alanfang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenCV C++常用功能介绍相关的知识,希望对你有一定的参考价值。
显示图片
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++常用功能介绍的主要内容,如果未能解决你的问题,请参考以下文章