how do i open a browser in matlab ?

2 ビュー (過去 30 日間)
yogesh harmukh
yogesh harmukh 2020 年 2 月 19 日
回答済み: Image Analyst 2020 年 2 月 22 日
how to a open browser to select image files in folder or browse to diferent folder in computer and load the file ?

回答 (2 件)

Sky Sartorius
Sky Sartorius 2020 年 2 月 19 日
Or if you have the toolbox,
help uigetimagefile

Image Analyst
Image Analyst 2020 年 2 月 22 日
Try 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)

カテゴリ

Help Center および File ExchangeManage Products についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by