从Essential Matrix估计R,T

2024-03-15 20:58
文章标签 估计 matrix essential

本文主要是介绍从Essential Matrix估计R,T,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!



clc
clear
t=rand(3,1)
R=rodrigues(rand(3,1))
T=[0 -t(3) t(2);t(3) 0 -t(1);-t(2) t(1) 0
];E=T*R
[U,S,V]=svd(E);
disp('S?=?diag(1,1,0)')
S
W=[0 -1 0;1 0 0;0 0 1
];
P1=[U*W*V' U(:,3)]
P2=[U*W'*V' U(:,3)]
disp('check R..')
norm(U*W*V'-R)
norm(U*W'*V'-R)disp('check t..')
norm(U(:,3) - t/norm(t))
norm(- U(:,3) - t/norm(t))


Decomposing the Essential matrix using Horn and Eigen 


void DecomposeEssentialUsingHorn90(double _E[9], double _R1[9], double _R2[9], double _t1[3], double _t2[3]) {//from : http://people.csail.mit.edu/bkph/articles/Essential.pdfusing namespace Eigen;Matrix3d E = Map<Matrix<double,3,3,RowMajor> >(_E);Matrix3d EEt = E * E.transpose();Vector3d e0e1 = E.col(0).cross(E.col(1)),e1e2 = E.col(1).cross(E.col(2)),e2e0 = E.col(2).cross(E.col(2));Vector3d b1,b2;#if 1//Method 1Matrix3d bbt = 0.5 * EEt.trace() * Matrix3d::Identity() - EEt; //Horn90 (12)Vector3d bbt_diag = bbt.diagonal();if (bbt_diag(0) > bbt_diag(1) && bbt_diag(0) > bbt_diag(2)) {b1 = bbt.row(0) / sqrt(bbt_diag(0));b2 = -b1;} else if (bbt_diag(1) > bbt_diag(0) && bbt_diag(1) > bbt_diag(2)) {b1 = bbt.row(1) / sqrt(bbt_diag(1));b2 = -b1;} else {b1 = bbt.row(2) / sqrt(bbt_diag(2));b2 = -b1;}
#else//Method 2if (e0e1.norm() > e1e2.norm() && e0e1.norm() > e2e0.norm()) {b1 = e0e1.normalized() * sqrt(0.5 * EEt.trace()); //Horn90 (18)b2 = -b1;} else if (e1e2.norm() > e0e1.norm() && e1e2.norm() > e2e0.norm()) {b1 = e1e2.normalized() * sqrt(0.5 * EEt.trace()); //Horn90 (18)b2 = -b1;} else {b1 = e2e0.normalized() * sqrt(0.5 * EEt.trace()); //Horn90 (18)b2 = -b1;}
#endif//Horn90 (19)Matrix3d cofactors; cofactors.col(0) = e1e2; cofactors.col(1) = e2e0; cofactors.col(2) = e0e1;cofactors.transposeInPlace();//B = [b]_x , see Horn90 (6) and http://en.wikipedia.org/wiki/Cross_product#Conversion_to_matrix_multiplicationMatrix3d B1; B1 <<    0,-b1(2),b1(1),b1(2),0,-b1(0),-b1(1),b1(0),0;Matrix3d B2; B2 <<    0,-b2(2),b2(1),b2(2),0,-b2(0),-b2(1),b2(0),0;Map<Matrix<double,3,3,RowMajor> > R1(_R1),R2(_R2);//Horn90 (24)R2 = (cofactors.transpose() - B1*E) / b1.dot(b1);R1 = (cofactors.transpose() - B2*E) / b2.dot(b2);Map<Vector3d> t1(_t1),t2(_t2); t1 = b2; t2 = b1;cout << "Horn90 provided " << endl << R1 << endl << "and" << endl << R2 << endl;
}

http://www.morethantechnical.com/2012/08/09/decomposing-the-essential-matrix-using-horn-and-eigen-wcode/

http://www.cnblogs.com/cutepig/archive/2007/07/12/815351.html

这篇关于从Essential Matrix估计R,T的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/813242

相关文章

[论文笔记]LLM.int8(): 8-bit Matrix Multiplication for Transformers at Scale

引言 今天带来第一篇量化论文LLM.int8(): 8-bit Matrix Multiplication for Transformers at Scale笔记。 为了简单,下文中以翻译的口吻记录,比如替换"作者"为"我们"。 大语言模型已被广泛采用,但推理时需要大量的GPU内存。我们开发了一种Int8矩阵乘法的过程,用于Transformer中的前馈和注意力投影层,这可以将推理所需

数据集 3DPW-开源户外三维人体建模-姿态估计-人体关键点-人体mesh建模 >> DataBall

3DPW 3DPW-开源户外三维人体建模数据集-姿态估计-人体关键点-人体mesh建模 开源户外三维人体数据集 @inproceedings{vonMarcard2018, title = {Recovering Accurate 3D Human Pose in The Wild Using IMUs and a Moving Camera}, author = {von Marc

数据集 Ubody人体smplx三维建模mesh-姿态估计 >> DataBall

Ubody开源人体三维源数据集-smplx-三维建模-姿态估计 UBody:一个连接全身网格恢复和真实生活场景的上半身数据集,旨在拟合全身网格恢复任务与现实场景之间的差距。 UBody包含来自多人的现实场景的1051k张高质量图像,这些图像拥有2D全身关键点、3D SMPLX模型。 UBody由国际数字经济学院(IDEA)提供。 (UBody was used for mesh r

73. Set Matrix Zeros

题目: 解答: 提供了两种解题思路: 第一种,使用两个数组,分别标记每一行、每一列是否有0的存在,然后再去更新二维数组。 第二种,使用两个变量brow,bcol分别标记第0行,第0列是否存在0,然后使用每一行、每一列的第一个单元存储是否该行、该列存在0. 代码: class Solution {public:// 方法一void setZeroes(vector<vector<i

Error: label vector and instance matrix must be double的解决方法

在使用uci下载的数据时,建模时出现这个错误的解决方法 首先现在UCI上面下载数据 然后右键另存为就行了。这样我们就从UCI里面下载到了训练数据 在matlab 点 导入数据,数据类型要记得选第二个, 如果选择最后一个table就会出现这个问题 最后附上代码 %%之前先import wine.date IMPORTED DATA 设为Numeric Matrix (数值矩

python 实现matrix exponentiation矩阵求幂算法

matrix exponentiation矩阵求幂算法介绍 矩阵求幂算法(Matrix Exponentiation)是一种通过利用矩阵乘法的结合律来高效地计算矩阵的幂的算法。这种方法特别适用于在算法竞赛和计算机科学领域中解决需要快速计算矩阵幂的问题,如求解线性递推关系、图论中的路径计数等。 基本思想 矩阵求幂算法的基本思想类似于整数快速幂算法(快速幂算法),通过递归或迭代的方式将矩阵幂的计

[LeetCode] 240. Search a 2D Matrix II

题:https://leetcode.com/problems/search-a-2d-matrix-ii/description/ 题目 Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers i

[LeetCode] 566. Reshape the Matrix

题:https://leetcode.com/problems/reshape-the-matrix/description/ 题目 In MATLAB, there is a very useful function called ‘reshape’, which can reshape a matrix into a new one with different size but keep

UVa 11992 Fast Matrix Operations 线段树

UVa 11992 Fast Matrix Operations 题目大意:有一个r行c列的全0矩阵,支持三种操作: 1 x1 y1 x2 y2 v 子矩阵(x1,y1,x2,y2)的所有元素增加v(v > 0)。 2 x1 y1 x2 y2 v 子矩阵(x1,y1,x2,y2)的所有元素设为v(v > 0)。 3 x1 y1 x2 y2    查询子矩阵(x1,y1,x2,y2

【HDU】4965 Fast Matrix Calculation 矩阵快速幂

传送门:【HDU】4965 Fast Matrix Calculation 题目分析:因为比赛的时候写的太匆忙。。写的不堪入目,所以赛后重写了一次,顺便就贴一下了。 因为A*B=C,所以C^(N*N-1) = A*B*A*B*A*...*B*A*B,因为满足结合律所以变成A*( (B*A)^(N*N-2) )*B,因为中间得到的矩阵最大不超过K(K<=6),所以可以对中间的矩阵快速幂,然