www.pudn.com > calibr8.zip > reverseDLT.m


function Spoints = reverseDLT( DLT, Ipoints )
%
% Spoints = reverseDLT( DLT, Ipoints )
%
% reverse DLT - computes the scene coordinates from image coordiantes
%
%

HIpoints = hext( Ipoints );
RSp = (DLT \  HIpoints')';
Spoints = hnorm( RSp );