source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/zisserman/vgg_examples/F_from_Ps_ex.m @ 37

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

Added original make3d

  • Property svn:executable set to *
File size: 383 bytes
Line 
1% Example on computing F from two camera matrices using vgg_F_from_P
2% and displaying result
3
4% Note P's are read from stored example in vgg_example_scene
5
6% Read in P's and images
7[view] = vgg_example_scene(2);
8
9% Compute F from P's
10F = vgg_F_from_P(view(1).P, view(2).P);
11
12% Display
13vgg_gui_F(view(1).I, view(2).I, F');
14disp('Computed epipolar geometry. Move the mouse to verify')
Note: See TracBrowser for help on using the repository browser.