あるフレームの変数を別のフレームにどのように変更できますか。これは、メモリ管理の問題ではない種類のコピーです。
例えば :
iplimage *frame = NULL;
iplimage *Temp_frame = NULL;
while(1) {
frame = cvQueryFrame( capture );
if( !frame ) break;
Temp_frame=cvcloneimage(frame);
cvreleaseImage(&Temp_frame);
cvreleaseImage(&frame);
}
エラー:
開いている cv.exe の 0x75b39673 で未処理の例外: Microsoft C++ 例外: cv::Exception at memory location 0x0015f250..
助けてください。