OpenCV:计算 StereoRectify 的旋转矩阵

发布于 2024-12-06 00:31:59 字数 1323 浏览 1 评论 0原文

我想计算旋转和平移矩阵以用于开放式CV中的stereoRectify。校正后的图像看起来扭曲且完全不正确(就像图像中心的两个方向完全扭曲的圆锥体一样)

我有两个相机的旋转和平移矩阵......

此外,这是一篇类似的帖子,但它没有帮助: 查找两个相机之间的旋转矩阵对于“Stereorectify”

我在下面分享我的代码......

// Create interinsic parameters matrix given the translation and rotation matrecis
Mat CreateExternsicParamsMat(Mat R, Mat T)
{
    Mat ext1(4,4,T.type());
    Mat ext2(4,4,T.type());
    for(int i=0; i<3;i++)
        for(int j=0;j<3; j++)
            ext1.at<double>(i,j) = R.at<double>(i,j);
    for(int i=0; i<3;i++)
        ext1.at<double>(i,3) = T.at<double>(i,0);
    ext1.at<double>(3,3) = 1;
    ext1.at<double>(3,2) = 0;
    ext1.at<double>(3,1) = 0;
    ext1.at<double>(3,0) = 0;
    return ext1;
}


Mat ext1 = CreateExternsicParamsMat(R1,T1);
Mat ext2 = CreateExternsicParamsMat(R2,T2);
Mat ext1inv;
invert(ext1,ext1inv);
Mat ext = ext1inv*ext2;

for(int i=0; i<3;i++)
   for(int j=0;j<3; j++)
      R.at<double>(i,j) = ext.at<double>(i,j);

for(int i=0; i<3;i++)
    T.at<double>(i,0)=ext.at<double>(i,3);

stereoRectify( M1, D1, M2, D2, img_size, R, T, R1, R2, P1, P2, Q);

I want to compute the rotation and translation matrices to use for stereoRectify in open CV. The rectified images look twisted and totally incorrect (Like completely twisted cone at the center of the image going both directions)

I have the rotation and translation matrices of both cameras....

Also, this is a smilar post but it is not helping: Finding Rotation matrices between two cameras for "Stereorectify"

I am sharing my code below...

// Create interinsic parameters matrix given the translation and rotation matrecis
Mat CreateExternsicParamsMat(Mat R, Mat T)
{
    Mat ext1(4,4,T.type());
    Mat ext2(4,4,T.type());
    for(int i=0; i<3;i++)
        for(int j=0;j<3; j++)
            ext1.at<double>(i,j) = R.at<double>(i,j);
    for(int i=0; i<3;i++)
        ext1.at<double>(i,3) = T.at<double>(i,0);
    ext1.at<double>(3,3) = 1;
    ext1.at<double>(3,2) = 0;
    ext1.at<double>(3,1) = 0;
    ext1.at<double>(3,0) = 0;
    return ext1;
}


Mat ext1 = CreateExternsicParamsMat(R1,T1);
Mat ext2 = CreateExternsicParamsMat(R2,T2);
Mat ext1inv;
invert(ext1,ext1inv);
Mat ext = ext1inv*ext2;

for(int i=0; i<3;i++)
   for(int j=0;j<3; j++)
      R.at<double>(i,j) = ext.at<double>(i,j);

for(int i=0; i<3;i++)
    T.at<double>(i,0)=ext.at<double>(i,3);

stereoRectify( M1, D1, M2, D2, img_size, R, T, R1, R2, P1, P2, Q);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文