
eigen
文章平均质量分 62
星星的月亮叫太阳
这个作者很懒,什么都没留下…
展开
-
Eigen
norm() 返回向量的二范数,比如 norm(3.0,4.0) = 5.0。原创 2023-08-28 11:46:36 · 204 阅读 · 0 评论 -
Eigen一些矩阵转换
由旋转矩阵和平移得到齐次变换矩阵1)Eigen::Matrix3d R;// Find your Rotation MatrixEigen::Vector3d T;// Find your translation VectorEigen::Matrix4d Trans; // Your Transformation MatrixTrans.setIdentity(); // Set to Identity to make bottom row of Matrix 0,0,0,1Tra..原创 2021-11-09 22:26:21 · 1600 阅读 · 0 评论