Hello ,
I have bitmap images file in my computer.And I numbered images form 1 to 100.
I want to read image synchronously.
Something like:
for i=1:100
% read images
s = sprintf('C:\\images\\%d.bmp', i);
A[i] = imread(s);
A[i] = double(A);
end
I know that this code can't work.Is there a function that perform my algorithm in MATLAB
Could you help me please?