Feeds
已回答
How to store images in a single array or matrix
im = {'image1.png','image2.png','image3.png'}; for k = 1:length(im) image1 = im2double(imread(im{k})); % ...... end
How to store images in a single array or matrix
im = {'image1.png','image2.png','image3.png'}; for k = 1:length(im) image1 = im2double(imread(im{k})); % ...... end
5 years 前 | 0