How to Resize multiple Images without affecting the image features?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
HI How to Resize multiple Images without affecting the image features? i have finger knusckles dataset and almost all images are of different size. How to resize all images so that it can be useful for further processing and resizing does not affect the image features also?
0 Kommentare
Antworten (1)
Taru
am 23 Nov. 2022
Hi Imran,
I understand that you want to apply resize operation on multiple images.
After building the ‘imageDatastore’, use ‘transform’ function with a helper function which entails the required resizing operations.
Here is an example of implementing it:
imds=imageDatastore(["bug1.png","bug2.png"]);
targetSize = [224,224];
imdsReSz = transform(imds,@(x) imresize(x,targetSize));
I=read(imdsReSz);
imshow(I)
Hope it resolves your query.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!