Call a folder from desktop and use images inside it
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
HEMRAJ PATEL
le 29 Nov 2021
Réponse apportée : yanqi liu
le 30 Nov 2021
I want to make a programme where i can call a file from desktop and them use images stored in it in the same programme.
0 commentaires
Réponse acceptée
Wan Ji
le 29 Nov 2021
Hey, friend,
Using uigetfile is a nice choice, for example
[file,path,indx] = uigetfile( ...
{'*.jpg;*.png;*.tiff;*.tif;*.bmp',...
'Image Files (*.jpg;*.png;*.tiff;*.tif;*.bmp)'; ...
'*.*','All Files (*.*)'}, ...
'Select a File');
% Then use imread to read the image
I = imread([path, file]);
0 commentaires
Plus de réponses (1)
yanqi liu
le 30 Nov 2021
% read
[filename, pathname, ~] = uigetfile( ...
{ '*.bmp;*.jpg;*.tif;*.png;*.gif','All Image Files';...
'*.*', 'all files (*.*)'}, ...
'choose file', ...
'MultiSelect', 'off', ...
'C:\Users\Administrator\Desktop\');
filePath = 0;
if isequal(filename, 0) || isequal(pathname, 0)
return;
end
filePath = fullfile(pathname, filename)
0 commentaires
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!