0

以下のコードを使用して IplImage (IplImage* ではなく) を保存したい

IplImage ipl_from_mat((IplImage)imgDisparity8U); 
cvNamedWindow("window", CV_WINDOW_AUTOSIZE); 
variable when you need it as IplImage* 
cvShowImage("window", &ipl_from_mat);  
cvSaveImage("disparity.jpg",ipl_from_mat);//Problem with this line

しかし、それはできないようです。私を助けてください。

ありがとうございます

4

1 に答える 1

6

次のようなポインタを渡す必要はありません。

cvSaveImage("disparity.jpg", &ipl_from_mat);
于 2012-06-12T13:42:48.780 に答える