0

我正在尝试使从相机拍摄的鱼眼图像不失真。我已经获得了所需的相机参数。但是,当我运行下面的代码时:

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 行。如果有人可以帮助我解决此错误,我将不胜感激!

4

1 回答 1

1

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

于 2015-07-08T07:43:25.717 回答