以下のコードを使用して 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
しかし、それはできないようです。私を助けてください。
ありがとうございます