resizing all images in a folder
古いコメントを表示
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!
採用された回答
その他の回答 (2 件)
Image Analyst
2015 年 9 月 28 日
0 投票
See the FAQ for code to do this:
Put your calls to imread(), imresize() and imwrite() inside the loop.
anis martina
2024 年 3 月 26 日
編集済み: anis martina
2024 年 3 月 26 日
0 投票
resize multiple image using in matlab image import in file code
1 件のコメント
Image Analyst
2024 年 3 月 26 日
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.
カテゴリ
ヘルプ センター および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!