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++常用功能介绍的主要内容,如果未能解决你的问题,请参考以下文章

c++实现双向链表的常用功能

c++ 常用功能实现总结

c++ 常用功能实现总结

C++ 之string类常用接口功能解析(7千字长文带你玩懂string!)

介绍常用的OpenGL的函数(定义+功能)

WebPack常用功能介绍