Clear Filters
Clear Filters

how can i browse an image using matlab gui?

1 view (last 30 days)
can u send me a tutorial for solving my problem
  7 Comments
Ashitha
Ashitha on 10 Jul 2013
@Dishant Arora: How to get path of uigetfile?
Jan
Jan on 10 Jul 2013
You do not need the path of uigetfile. If you want to know how the path is replied by uigetfile, look at David's answer and read the documentation:
doc uigetfile

Sign in to comment.

Accepted Answer

David Sanchez
David Sanchez on 10 Jul 2013
Add the following to the pushbutton callback function
[filename, pathname, filterindex] = uigetfile('*.png', 'Pick a .PNG image');
You can change, of course, the extension of your images. Go to:
help uigetfile
or
doc uigetfile
for more options.
  3 Comments
Ashitha
Ashitha on 11 Jul 2013
path is displayed in the text box.. but image is not displayed.. why it so??
Dishant Arora
Dishant Arora on 11 Jul 2013
fileName = uigetfile('*.jpg');
imshow(fileName)

Sign in to comment.

More Answers (0)

Categories

Find more on Dialog Boxes in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!