source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/BlueCCal/MultiCamSelfCal/CoreFunctions/align3d.m @ 86

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

Added original make3d

File size: 130 bytes
Line 
1function [P,X] = align3d(inP,inX,simT);
2
3T = [simT.s*simT.R;0 0 0];
4T = [T, [simT.t(:);1]];
5
6X = T*inX;
7
8P = inP*inv(T);
9
10return;
Note: See TracBrowser for help on using the repository browser.