C++ IplImage*的若干bug之二:cvReleaseImage问题
源代码:IplImage* image_src; //定义IplImage*变量IplImage *image = cvLoadImage(“test.jpg”); //加载一幅图片int width = image->width;int height = image->height;if(width < 1 || height < 1){ cout<<" width = "