标签: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");
标签:lease load wait wim release cvs The enc div
原文地址:https://www.cnblogs.com/alanfang/p/11290876.html