summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/toolbox/toolbox_basic/TOOLBOX_calib/clearwin.m
blob: a04be67721ae95c6087d832374e54ebcee77bb0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
% 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.

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