随笔分类 - Cere and G2o
摘要:ceres之求解器 // TODO(keir): Considerably expand the explanations of each solver type. enum LinearSolverType { // These solvers are for general rectangula
阅读全文
摘要:ceres关于图优化问题 首先是图的节点,一般为位姿;再者,边代表节点与节点之间的相对变换(旋转和平移),一般是真实测量的数据,如里程计、激光雷达数据、imu数据等。如下图,三角形代表位姿、边代表测量数据;虚线代表回环检测的约束边。 #include <fstream> #include <iost
阅读全文
摘要:相机重投影误差 相机归一化公式: 相机归一化与外参变换公式: 相机畸变: 代码: // Templated pinhole camera model for used with Ceres. The camera is // parameterized using 9 parameters: 3 f
阅读全文
摘要:1、 2、 四元数到rotation matrix 3、 参考: https://en.wikipedia.org/wiki/Rotation_matrix https://en.wikipedia.org/wiki/3D_rotation_group
阅读全文
该文被密码保护。
该文被密码保护。
摘要:9、ceres 安装 git clone https://github.com/ceres-solver/ceres-solver.git 安装依赖: # CMake sudo apt-get install cmake # google-glog + gflags sudo apt-get ins
阅读全文