Call a folder from desktop and use images inside it

조회 수: 11 (최근 30일)
HEMRAJ PATEL
HEMRAJ PATEL 2021년 11월 29일
답변: yanqi liu 2021년 11월 30일
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.

채택된 답변

Wan Ji
Wan Ji 2021년 11월 29일
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]);

추가 답변 (1개)

yanqi liu
yanqi liu 2021년 11월 30일
% 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)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by