MATLAB: How to store images of different dimension in a single array

arraysimages

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!!

Best Answer

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