I tried the following program for reading multiple images(about 300 images). Now I want to store these images immediately after reading each to some location by some name as
You can simply save all them into one big matrix:
for i=1:5 images_all(:, :, :, i) = imread(['C:\Users\shree\Desktop\1\im' num2str(i) '.jpg']) end
After this, all images will be stored in images_all (here assume that all images are colored images, i.e. 3 channels).
images_all