How to save an image using a push button on MATLAB gui
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tania
am 26 Aug. 2015
Kommentiert: Walter Roberson
am 19 Mär. 2017
Hi,
I have just started working with MATLAB GUI. I can open an image, process the image but unable to save the image to a destination folder.
Any help will be appreciated.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 26 Aug. 2015
[filename, foldername] = uiputfile('Where do you want the file saved?');
complete_name = fullfile(foldername, filename);
imwrite(TheArray, complete_name);
6 Kommentare
Image Analyst
am 19 Mär. 2017
They are returned from uiputfile() - it's whatever the user chose. You can also use imsave() instead of uiputfile().
Walter Roberson
am 19 Mär. 2017
In other words they are not constants, they are values returned by the uigetfile routine according what the user chooses.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 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!