How to store images of different dimension in a single array

4 views (last 30 days)
Hello everyone!! I am stuck with a serious problem here. I need to store images each of different dimension in a same array. How can i do that?? The size of each image keeps changing. I cannot store the images individually because it runs in a loop and images are huge in number. please suggest me a solution or any other alternative method.
Thanks in advance!!

Accepted Answer

David Sanchez
David Sanchez on 23 Jul 2013
Create a cell array instead, each cell can contain a image of different size:
N = number_of_images;
my_im_cell = cell(N,1);
my_im_cell{k} = image(k); % where k is the image index/number

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!