⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vgg_p_from_f.m

📁 多视图几何三维重建程序
💻 M
字号:
%P = vgg_P_from_F(F)  Compute cameras from fundamental matrix.
%   F has size (3,3), P has size (3,4).
%
%   If x2'*F*x1 = 0 for any pair of image points x1 and x2,
%   then the camera matrices of the image pair are 
%   P1 = eye(3,4) and P2 = vgg_P_from_F(F), up to a scene homography.

% Tomas Werner, Oct 2001

function P = vgg_P_from_F(F)

[U,S,V] = svd(F);
e = U(:,3);
P = [-vgg_contreps(e)*F e];

return

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -