I want a MATLAB code that will resize a given image into 25x25 image using multiple images from a folder
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have total 649 images that i want to resized into 25 x 25 one shot. Is it even possible or i have to specifically select an image and resize it.
0 comentarios
Respuestas (2)
Image Analyst
el 19 de Dic. de 2017
See the FAQ:
and use one of the chunks of code there to process a sequence of images.
Inside the loop put a call to imresize
resizedImage = imresize(thisImage, [25, 25]);
imwrite(resizedImage, outputFileName);
0 comentarios
Ver también
Categorías
Más información sobre Image Preview and Device Configuration en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!