相机外参与相机位姿深度理解

文章目录

      • [1. 外参矩阵的定义](#1. 外参矩阵的定义)
      • [2. 相机姿态推导](#2. 相机姿态推导)
        • [2.1 相机的位置](#2.1 相机的位置)
        • [2.2 相机的朝向(姿态)](#2.2 相机的朝向(姿态))
      • [3. 具体步骤总结](#3. 具体步骤总结)
      • [4. 示例](#4. 示例)

外参描述了相机在世界坐标系中的位置和朝向,即它将世界坐标转换为相机坐标的几何变换。具体来说,外参包括一个 旋转矩阵 R R R 和一个 平移向量 t t t,它们共同构成了将世界坐标变换到相机坐标系的刚体变换。

1. 外参矩阵的定义

外参矩阵通常表示为一个 3 × 4 3 \times 4 3×4 的矩阵,形式如下:
[ R t ] \begin{bmatrix} R & t \end{bmatrix} [Rt]

其中:

  • R R R 是一个 3 × 3 3 \times 3 3×3 的旋转矩阵,它描述了相机的朝向(姿态)。
  • t t t 是一个 3 × 1 3 \times 1 3×1 的平移向量,它描述了相机相对于世界坐标系的平移。

该矩阵的作用是将世界坐标系下的点 P w = ( X w , Y w , Z w ) ⊤ \mathbf{P}_w = (X_w, Y_w, Z_w)^\top Pw=(Xw,Yw,Zw)⊤ 转换为相机坐标系下的点 P c = ( X c , Y c , Z c ) ⊤ \mathbf{P}_c = (X_c, Y_c, Z_c)^\top Pc=(Xc,Yc,Zc)⊤:

P c = R P w + t \mathbf{P}_c = R \mathbf{P}_w + t Pc=RPw+t

可以将这个过程写成齐次坐标形式,方便描述:

[ X c Y c Z c 1 ] = [ R t 0 1 ] [ X w Y w Z w 1 ] \begin{equation} \begin{bmatrix} X_c \\ Y_c \\ Z_c \\ 1 \end{bmatrix} = \begin{bmatrix} R & t \\ 0 & 1 \end{bmatrix} \begin{bmatrix} X_w \\ Y_w \\ Z_w \\ 1 \end{bmatrix} \end{equation} XcYcZc1 =[R0t1] XwYwZw1

这其中的 [ R t 0 1 ] \begin{bmatrix} R & t \\ 0 & 1 \end{bmatrix} [R0t1] 矩阵就是外参矩阵的扩展形式(齐次变换矩阵)。

2. 相机姿态推导

我们关心的是如何从外参矩阵 [ R t ] \begin{bmatrix} R & t \end{bmatrix} [Rt] 中推导出相机在世界坐标系中的姿态,即旋转和位置。

2.1 相机的位置

相机的世界坐标位置 C \mathbf{C} C 是通过将相机坐标原点逆变换到世界坐标系中获得的。相机坐标系中的原点在相机坐标下是 P c = ( 0 , 0 , 0 ) ⊤ \mathbf{P}_c = (0, 0, 0)^\top Pc=(0,0,0)⊤,因此有:
R C + t = 0 R \mathbf{C} + t = 0 RC+t=0

解得相机在世界坐标系中的位置为:
C = − R − 1 t \mathbf{C} = -R^{-1} t C=−R−1t

由于旋转矩阵 R R R 是正交矩阵,所以 R − 1 = R ⊤ R^{-1} = R^\top R−1=R⊤,因此相机位置可以表示为:
C = − R ⊤ t \mathbf{C} = -R^\top t C=−R⊤t

2.2 相机的朝向(姿态)

相机的姿态由旋转矩阵 R R R 表示,它将世界坐标系中的方向向量旋转到相机坐标系中。具体来说,旋转矩阵的列向量表示世界坐标系中基向量在相机坐标系中的方向。

因此, R R R 描述了相机相对于世界坐标系的旋转。如果想得到相机在世界坐标系中的姿态,可以求 R R R 的转置矩阵 R ⊤ R^\top R⊤,因为 R R R 将世界坐标系变换到相机坐标系,而 R ⊤ R^\top R⊤ 则是反向变换,即从相机坐标系变回世界坐标系的旋转。

3. 具体步骤总结

要从外参推导相机在世界坐标系中的姿态,步骤如下:

  1. 提取旋转矩阵 R R R :从外参矩阵 P = [ R t ] P = \begin{bmatrix} R & t \end{bmatrix} P=[Rt] 中提取前 3 × 3 3 \times 3 3×3 的部分 R R R,这就是旋转矩阵,表示相机的朝向。

  2. 提取平移向量 t t t :从外参矩阵提取最后的 3 × 1 3 \times 1 3×1 部分 t t t,表示相机的平移。

  3. 计算相机位置 C \mathbf{C} C :通过公式 C = − R ⊤ t \mathbf{C} = -R^\top t C=−R⊤t 得到相机的世界坐标系中的位置。

  4. 相机的朝向 :旋转矩阵 R R R 直接描述了世界坐标系如何转换到相机坐标系。如果需要相机在世界坐标系中的姿态(即从相机坐标系转换到世界坐标系),使用 R ⊤ R^\top R⊤ 作为反向旋转矩阵。

4. 示例

把前后左右四个相机用opencv viz模块绘制出来。

cpp 复制代码
TEST(Demo, DemoOfCamera)
{
    Sentinel_Config sentinel_config = GetDefaultConfig();

    Camera2World front_camera2world(sentinel_config.front_yaml_path);
    Camera2World rear_camera2world(sentinel_config.rear_yaml_path);
    Camera2World left_camera2world(sentinel_config.left_yaml_path);
    Camera2World right_camera2world(sentinel_config.right_yaml_path);


    // visualize camera
    cv::viz::Viz3d window("Coordinate Frame");

    auto visualize_function = [&](Camera2World &camera2world, std::string widget_name)
    {
        
        cv::Matx33d K = camera2world.camera_param.para_K;
        cv::Matx33d R = camera2world.camera_param.Rcw;
        cv::Vec3d T = camera2world.camera_param.Tcw;

        cv::Vec3d camera_position = -R.t() * T;

        cv::viz::WCameraPosition cam(0.5); // Coordinate axes
        cv::viz::WCameraPosition cam_frustum(K, 0.5, cv::viz::Color::green()); // Camera frustum

        window.showWidget(widget_name, cam);
        window.showWidget(widget_name+" frustum", cam_frustum);

        // set the viewer pose
        cv::Affine3d cam_pose(R.t(), camera_position);
        window.setWidgetPose(widget_name, cam_pose);
        window.setWidgetPose(widget_name+" frustum", cam_pose);
    };


    visualize_function(front_camera2world, "Front Camera");
    visualize_function(rear_camera2world, "Rear Camera");
    visualize_function(left_camera2world, "Left Camera");
    visualize_function(right_camera2world, "Right Camera");

    // visualize world
    cv::viz::WCoordinateSystem world_coor(1.0);
    window.showWidget("World", world_coor);

    window.spin();

}

camera_position

相关推荐
好评笔记4 小时前
机器学习笔记——30种常见机器学习算法简要汇总
机器学习·计算机视觉
Eric.Lee20214 小时前
数据集-目标检测系列- 花卉 鸡蛋花 检测数据集 frangipani >> DataBall
人工智能·python·yolo·目标检测·计算机视觉·鸡蛋花检查
亦枫Leonlew6 小时前
微积分复习笔记 Calculus Volume 1 - 6.3 Volumes of Revolution: Cylindrical Shells
笔记·数学·微积分
撞南墙者6 小时前
OpenCV自学系列(2)——核心操作(core operations)
人工智能·opencv·计算机视觉
Bearnaise9 小时前
GaussianDreamer: Fast Generation from Text to 3D Gaussians——点云论文阅读(11)
论文阅读·人工智能·python·深度学习·opencv·计算机视觉·3d
智驾机器人技术前线10 小时前
近期两篇NeRF/3DGS-based SLAM方案赏析:TS-SLAM and MBA-SLAM
3d·slam·nerf·3dgs
做程序员的第一天10 小时前
深度神经网络中不同的卷积层提取的特征有什么不同?
深度学习·计算机视觉
盘古开天166616 小时前
第一讲,Opencv计算机视觉基础之计算机视觉概述
人工智能·python·opencv·计算机视觉
不当菜鸡的程序媛1 天前
图像编辑一些概念:Image Reconstruction与Image Re-generation
人工智能·计算机视觉
深度学习lover1 天前
<项目代码>YOLOv8 草莓成熟识别<目标检测>
人工智能·python·yolo·目标检测·计算机视觉·草莓成熟识别