Effacer les filtres
Effacer les filtres

How to store images of different dimension in a single array

1 vue (au cours des 30 derniers jours)
Viswas Guptha
Viswas Guptha le 23 Juil 2013
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!!

Réponse acceptée

David Sanchez
David Sanchez le 23 Juil 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

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by