0
ビデオ入力を取得する場合、フレームをキャプチャするには画像が必要です。イメージはループごとに解放される必要がありますか?OpenCVメモリを解放しますか?
すなわち
IplImage* frame = 0;
while (1)
{
frame = cvQueryFrame (camera);
cvShowImage ("Window", frame);
//would I need to add a cvReleaseImage (&frame) here?
}
ありがとうございます – user1017485