Manipulating an array of images

2 visualizaciones (últimos 30 días)
Pranaya Kansakar
Pranaya Kansakar el 13 de Mayo de 2020
Editada: Kavya Vuriti el 4 de Ag. de 2020
I have an array of images stored in a 1 by x cell.
I tried to use a for loop to convert them all to BW
for i = 1.array.Count
NewArray{i} = im2bw(array(i))
end
However, I got the error
'Dot indeing is not supported for variables of this type.'
Is there a way around this?

Respuestas (1)

Kavya Vuriti
Kavya Vuriti el 4 de Ag. de 2020
Editada: Kavya Vuriti el 4 de Ag. de 2020
Hi,
To access the contents of a cell in a cell array, curly braces({}) must be used. Try using following code:
for i = 1:numel(array)
NewArray{i} = im2bw(array{i});
end
Hope this helps.

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by