我正在努力纠正图像。我有点对应,我计算了矩阵F1和F2。在那之后,我想纠正。以下是我的代码
cv::Mat F1(4,4, CV_64FC1);
cv::Mat F2(4,4, CV_64FC1);
CvMat* points1 = cvCreateMat(8,1,CV_64FC2);
CvMat* points2 = cvCreateMat(8,1,CV_64FC2);
for (int i=0; i<8; i++) {
cvSet2D(points1,i,0,cvScalar(gt[i].xL,gt[i].yL));
cvSet2D(points2,i,0,cvScalar(gt[i].xR,gt[i].yR));
}
cv::Size size (imgL->width, imgL->height);
cv::stereoRectifyUncalibrated(points1, points2, F, size, F1, F2);
IplImage* rectL = cvCreateImage(cvSize(imgL->width,imgL->height), imgL->depth, imgL->nChannels);
cv::warpPerspective(imgL, rectL , F1, size);
cvSaveImage("rectL.jpg", rectL);
错误如下
error: in passing argument 2 of ‘void cv::warpPerspective(const cv::Mat&, cv::Mat&, const cv::Mat&, cv::Size, int, int, const cv::Scalar&)’
如果我按照以下方式创建CvMat
CvMat* rectified1 = cvCreateMat(imgL->width,imgL->height,imgL->depth);
cv::warpPerspective(imgL, *rectified1, F1,size);
cvSaveImage("rectified1.png", imgL);
然后错误在于保存图像。它说这个数组不被识别。
我想知道是否有人可以帮助我。
非常感谢。