我正在从 avi 视频中抓取一帧。
img1 = cvQueryFrame( capture );
cvReleaseImage( &img1 );
当我尝试释放抓取的帧 img1 时,我得到
"An unhandled exception of type 'System.Runtime.InteropServices.SEHException' occurred in "
如何释放分配给 img1 的内存?
我正在从 avi 视频中抓取一帧。
img1 = cvQueryFrame( capture );
cvReleaseImage( &img1 );
当我尝试释放抓取的帧 img1 时,我得到
"An unhandled exception of type 'System.Runtime.InteropServices.SEHException' occurred in "
如何释放分配给 img1 的内存?