Newer
Older
abgabensammlungSS15 / mr / Ub5 / TOOLBOX_calib / clearwin.m
@MaxXximus92 MaxXximus92 on 20 May 2015 420 bytes mr Ub5 ea UB5 initial
% Function that clears all the wintx_i and winty_i
% In normal operation of the toolbox, this function should not be
% useful.
% only in cases where you want to re-extract corners using the Extract grid corners another time... not common. You might as well use the Recomp. corners.

if exist('n_ima','var')~=1
    return;
end;

for kk = 1:n_ima,
   
   eval(['clear wintx_' num2str(kk) ' winty_' num2str(kk)]);
   
end;