resizing all images in a folder
Mostra commenti meno recenti
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!
Risposta accettata
Più risposte (2)
Image Analyst
il 28 Set 2015
0 voti
See the FAQ for code to do this:
Put your calls to imread(), imresize() and imwrite() inside the loop.
1 Commento
Victoria Lawlor
il 28 Set 2015
anis martina
il 26 Mar 2024
Modificato: anis martina
il 26 Mar 2024
0 voti
resize multiple image using in matlab image import in file code
1 Commento
Image Analyst
il 26 Mar 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.
Categorie
Scopri di più su Convert Image Type in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!