📄 torr_errg_sse.m
字号:
% This function is used by torr_nonlinG and provides the sum of squared error for a
% particular g by converting to F and measuring Sampson's distance.
function [sseC] = torr_errg_sse(g, nx1,ny1,nx2,ny2, m3, C)
%first convert the 6 parameters of g to a fundamental matrix
f = torr_g2F(g,C);
e = torr_errf2(f, nx1,ny1,nx2,ny2, length(nx1), m3);
sseC = norm(e,1); % sum of squares
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -