Hello,
I have bmp images in image folder on my computer. I named it from 1.bmp
to 100.bmp
.
And I want to read these images like this:
for i=1:100
s='C:\images'+i+'.bmp';
A=imread(s);
end
But Matlab gave an error. How can I implement this?