断言使用fisheye undistortPoints时失败

时间:2015-07-01 15:50:01

标签: opencv camera-calibration distortion fisheye

我试图破坏从相机拍摄的鱼眼图像。我已经获得了所需的相机参数。但是,当我运行以下代码时:

Mat cammatrix = cv::Mat::zeros(3,3, CV_64F);
cammatrix.at<double>(0,0) = 3.7089418826568277e+002;
cammatrix.at<double>(1,1) = 3.7179355652545451e+002;
cammatrix.at<double>(0,2) = 3.4450520804288089e+002;
cammatrix.at<double>(1,2) = 2.5859133287932718e+002;
cammatrix.at<double>(2,2) = 1.0;
std::vector<double> distortcoeff;
double tempdoub = -2.2022994789941803e+000;
distortcoeff.push_back(tempdoub);
tempdoub = 4.4652133910671958e+000;
distortcoeff.push_back(tempdoub);
tempdoub = 6.8050071879644780e-001;
distortcoeff.push_back(tempdoub);
tempdoub = -1.7697153575434696e+000;
distortcoeff.push_back(tempdoub);

// Process images here (optional)
    Mat img_scene (current);

    if(!img_scene.data )
    { std::cout<< " --(!) Error reading images " << std::endl; return -1; }
    img_scene.convertTo(img_scene, CV_32FC2);
    cv::fisheye::undistortPoints(img_scene, img_scene, cammatrix, distortcoeff);

我收到此错误:

OpenCV Error: Assertion failed (distorted.type() == CV_32FC2 || distorted.type() == CV_64FC2) in undistortPoints

不确定为什么会发生这种情况,因为我在将它转换为CV_32FC2之前已经有.convertTo行。如果有人能帮我解决这个错误,我真的很感激!

1 个答案:

答案 0 :(得分:1)

undistortPoints()函数正在检索未失真的像素位置,因为它是图像上当前失真的位置。即它在点上操作,而不是在图像上操作。 使用fisheye :: undistortImage作为图像。

相关问题