How to store images of different dimension in a single array

1 次查看(过去 30 天)
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!!

采纳的回答

David Sanchez
David Sanchez 2013-7-23
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by