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

📄 torr_nonlinf.m

📁 matlab三维重建程序
💻 M
字号:
%	By Philip Torr 2002
%	copyright Microsoft Corp.
% estimate fundamental matrix from perfect points??
% so plan is:----
%disp('estimating error on f')
%f = fmins('sseff',f,[], [],nx1,ny1,nx2,ny2, no_matches, m3);

%global nx1 ny1 nx2 ny2 no_matches m3
function f = nonlinf(f_init, nx1,ny1,nx2,ny2, no_matches, m3)

% stage 1 est F using linear methods
%f_init = estf(nx1,ny1,nx2,ny2, no_matches,m3);

%stage 2 estimate f non-linearly

%options(1) = 0;
%display results
options(13) = 2; 
%number of equality constraints
% option(14) = 300;
% number of iterations
f = constr('torr_errf_sseC', f_init, options, [],[],[], nx1, ny1, nx2, ny2, m3);


⌨️ 快捷键说明

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