resizing all images in a folder
Mostrar comentarios más antiguos
I am able to get matlab to resize and save an individual image, but I'm wondering how I can get it to do this for all images in a folder without having to type in the names one by one. The names of the saved & original images must stay the same if that makes any difference. Could I load the images into an array and then have it loop through each image? Sorry if this is a dumb question!
Respuesta aceptada
Más respuestas (2)
Image Analyst
el 28 de Sept. de 2015
0 votos
See the FAQ for code to do this:
Put your calls to imread(), imresize() and imwrite() inside the loop.
1 comentario
Victoria Lawlor
el 28 de Sept. de 2015
anis martina
el 26 de Mzo. de 2024
Editada: anis martina
el 26 de Mzo. de 2024
0 votos
resize multiple image using in matlab image import in file code
1 comentario
Image Analyst
el 26 de Mzo. de 2024
See the attached demo. It computes the average RGB image. If the second and subsequent images are of a different size than the first image, it will resize them to match the first image. You can easily not sum the images (because you don't need the mean) and add a call to imwrite to save them to disk, just create the full file name using fullfile and put them in different folder just in case you have some kind of mistake that you don't destroy the original.
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!