why when i import an image from my desktop the error says it doesnt exist plz help and thank u in advance

조회 수: 1 (최근 30일)

채택된 답변

Voss
Voss 2022년 11월 29일
편집: Voss 2022년 11월 29일
Use both output arguments from uigetfile to construct the full path name of the file:
[filename,pathname] = uigetfile();
fullfilename = fullfile(pathname,filename);
a = imread(fullfilename);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by