i want to work on multiple images one by one
what is the corresponding code and method for it
the code below reads and displays image one by one
now i want to display them....
f = dir('*.tif')
files ={f.name}
for k =1:numel(files)
im{k}=imread(files{k})
imshow(im{k})
pause(2)
end