Saving images in a directory folder
20 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear Sir,
i am making some operations in images and retrieve some target images , these target images i need to save them into a file , how can i do it ?
Thank you in advance
0 Kommentare
Antworten (2)
Rahul punk
am 2 Jun. 2021
Bearbeitet: Rik
am 2 Jun. 2021
%read image test.jpg
tt= imshow('C:\Users\admin\Desktop\test.jpg') ;
%save your image other location with any name save desktop or any folder also
saveas(tt,'C:\Users\admin\Desktop\testimagesave.jpg') ;
1 Kommentar
Rik
am 2 Jun. 2021
I also don't see what this adds beyond what the other answer already provides.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!