How can I read a set of images in a 1x6 cell array?

3 visualizaciones (últimos 30 días)
James
James el 10 de Sept. de 2019
Comentada: Walter Roberson el 26 de Dic. de 2019
How can I use the imread function ro read a set of images that is in a 1x6 cell array format?

Respuestas (1)

Walter Roberson
Walter Roberson el 10 de Sept. de 2019
Editada: Walter Roberson el 10 de Sept. de 2019
nfiles = length(YourCellArray);
image_content = cell(nfiles,1);
for K = 1 : nfiles
image_content{K} = imread(YourCellArray{K});
end
Or more simply,
image_content = cellfun(@imread, YourCellArray, 'uniform', 0);
  7 comentarios
jenifer Ask
jenifer Ask el 25 de Dic. de 2019
I recive this error:
Index exceeds matrix dimensions.
Walter Roberson
Walter Roberson el 26 de Dic. de 2019
You deleted the code showing how x1 and y1 are created.
We can deduce from the error message that at least one of the x1{i} or y1{i} values is either 1 or 2, or else the last possible value or the last minus 1. Under those circumstances subtracting 2 or adding 2 could be out of range.

Iniciar sesión para comentar.

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by