MATLAB: Matlab code for automated images slideshow

images slideshowMATLAB

hi all, i want images sledeshow in my gui but make sure that images slides must be change automatically..kindly help

Best Answer

Hope this helps... imgNameList=char('camerman.tif','Image.jpg','image2.jpg'); pause on; for i=1:length(imgNameList) a=imread(imgNameList(i,:)); imshow(a); drawnow; pause(1); end
%%% the above code runs only once %% better you use timer .