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