Azzera filtri
Azzera filtri

GUI

2 visualizzazioni (ultimi 30 giorni)
Shree Nath
Shree Nath il 5 Giu 2012
I have to get an image address through the Edit Box in the GUI. then, i want to read the image on that address using the imread function. how to do it?
Address is of the form C:\Users\user\Documents\MATLAB\xyz.png

Risposta accettata

Image Analyst
Image Analyst il 5 Giu 2012
Why not use uigetfile() instead - it's much friendlier to the user than having to type in some filename that they can't even see or easily verify that it exists.
  1 Commento
Shree Nath
Shree Nath il 5 Giu 2012
exactly wat i wanted .. thank you :)

Accedi per commentare.

Più risposte (1)

Walter Roberson
Walter Roberson il 5 Giu 2012
filename = get(handles.EDITBOXTAG, 'String'); %adjust EDITBOXTAG as needed
theimage = imread(filename);
  2 Commenti
Shree Nath
Shree Nath il 5 Giu 2012
had tried it already..
it said -
??? Conversion to logical from cell is not
possible.
Walter Roberson
Walter Roberson il 5 Giu 2012
theimage = imread(filename{1});

Accedi per commentare.

Categorie

Scopri di più su Convert Image Type 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