source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/torr/torr_errf_sseC.m @ 86

Last change on this file since 86 was 37, checked in by (none), 15 years ago

Added original make3d

File size: 482 bytes
Line 
1%       By Philip Torr 2002
2%       copyright Microsoft Corp.
3
4%this function is used only by the nonlinear minimizer, it reutrns the sse and constraints of F
5
6
7
8function [sseC, g] = torr_errf_sseC(f, nx1,ny1,nx2,ny2, m3)
9%disp('estimating error on f')
10
11e = torr_errf2(f, nx1,ny1,nx2,ny2, length(nx1), m3);
12sseC = norm(e,1); % sum of squares
13g(1) = norm(f) -1.0;
14g(2) = f(1) * (f(5) * f(9) - f(6) * f(8)) - f(2) * (f(4) * f(9) - f(6) * f(7)) + f(3) * (f(4) * f(8) - f(5) * f(7));
Note: See TracBrowser for help on using the repository browser.