imread, with inputdlg (Prompt user to enter filename and display it)
2 views (last 30 days)
Show older comments
I would like to promt user to enter the filename (e.g pin.png) and subsequently display the image
File = str2double(inputdlg ('please enter filename with extension'))
imread(File)
imshow(File)
However, im getting error message
0 Comments
Accepted Answer
Image Analyst
on 5 Dec 2019
It's so much nicer just to display all the files in a listbox and let the user click on one to display it. But it you prefer the klunky way of using uigetfile(), you can do this:
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = pwd; % or 'C:\wherever';
if ~exist(startingFolder, 'dir')
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.*');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
rgbImage = imread(fullFileName);
imshow(rgbImage);
axis('on', 'image');
More Answers (0)
See Also
Categories
Find more on Startup and Shutdown 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!