How to read jpg images in a loop

29 visualizaciones (últimos 30 días)
Hashem Burki
Hashem Burki el 3 de Mzo. de 2011
Respondida: ck el 15 de En. de 2020
Hi, I'm new in this. I have 4 images named: img1.jpg, img2.jpg, img3.jpg, and img4.jpg. All i have to do is read them one by one in a for loop. How can i do that?

Respuesta aceptada

Paulo Silva
Paulo Silva el 3 de Mzo. de 2011
c=cell(1,4);
for i=1:4
c{i}=imread(sprintf('img%d.jpg',i));
end
  3 comentarios
preeti
preeti el 24 de Dic. de 2014
hi if i want to show images also what i hav to add in this code.
Image Analyst
Image Analyst el 24 de Dic. de 2014
put this in the loop
subplot(2,2,i);
imshow(c{i});

Iniciar sesión para comentar.

Más respuestas (1)

ck
ck el 15 de En. de 2020
How can I loop through images I read in, when the images have different names and numbers?

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by