Azzera filtri
Azzera filtri

How to save an image using a push button on MATLAB gui

5 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Walter Roberson
Walter Roberson il 26 Ago 2015
[filename, foldername] = uiputfile('Where do you want the file saved?');
complete_name = fullfile(foldername, filename);
imwrite(TheArray, complete_name);
  6 Commenti
Image Analyst
Image Analyst il 19 Mar 2017
They are returned from uiputfile() - it's whatever the user chose. You can also use imsave() instead of uiputfile().
Walter Roberson
Walter Roberson il 19 Mar 2017
In other words they are not constants, they are values returned by the uigetfile routine according what the user chooses.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by