source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/zisserman/vgg_multiview/vgg_line3d_XY_from_pv.m

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

Added original make3d

  • Property svn:executable set to *
File size: 402 bytes
Line 
1% XY = vgg_line3d_XY_from_pv(L)  Converts Pluecker vector 3d line to a pair of homogeneous points.
2%
3% L ... double(1,6), Pluecker vector
4% XY ... double(4,2), pair of 3d points spanning the line
5%
6% XY are obtained by svd, their homogeneous vectors are mutually orthogonal.
7
8% T.Werner
9
10function XY = vgg_line3d_XY_from_pv(L)
11
12XY = vgg_line3d_XY_from_pm(vgg_line3d_pm_from_pv(L));
13
14return
Note: See TracBrowser for help on using the repository browser.