Thursday, August 11, 2005

waitbar

Use waitbar in the program for radial distortion correction:

h = waitbar(0,'Please wait...');
for i=1:100, % computation here %
waitbar(i/100)
end
close(h)

No comments:

Post a Comment