source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/torr/torr_f_reprojection_error.m @ 37

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

Added original make3d

File size: 562 bytes
Line 
1%       By Philip Torr 2002
2%       copyright Microsoft Corp.
3 
4   %used for non-linear estimation of reprojection error, of a match constrained by F
5   function sq_err =  torr_f_reprojection_error(est_point, nx1,ny1,nx2,ny2,f, m3)
6   
7   cx1 = est_point(1);
8   cy1 = est_point(2);
9   cy2 = est_point(3);
10   cx2 =  -(f(4) * cx1* cy2 +   f(5) * cy1* cy2+   f(6) * m3* cy2 + f(7) * cx1* m3+   f(8) * cy1* m3+   f(9) * m3* m3);
11   cx2 = cx2 / (  f(1) * cx1 +   f(2)* cy1  + f(3) * m3 );
12   
13   sq_err = (nx1 - cx1)^2 + (nx2 - cx2)^2 + (ny1 - cy1)^2 + (ny2 - cy2)^2;
Note: See TracBrowser for help on using the repository browser.