フィルターのクリア

how to load a file from different folder than our m. file?

1 回表示 (過去 30 日間)
Varian Adisuryo
Varian Adisuryo 2016 年 7 月 26 日
コメント済み: Varian Adisuryo 2016 年 7 月 26 日
Hi guys, so I want to load image from another file from my m. file using uigetfile. but when I run it, it says "file doesn't exist". please help, tell me the correct code. this is my script on m. file:
a=uigetfile()
filename=a;
setappdata(0,'filename',filename);
a=imread(a);
axes(handles.axes1);
imshow(a);
setappdata(0,'a',a)
setappdata(0,'filename',a);
plot(handles.axes1,'a')

採用された回答

Adam
Adam 2016 年 7 月 26 日
編集済み: Adam 2016 年 7 月 26 日
Use the following syntax
[FileName,PathName,~] = uigetfile(FilterSpec)
then
filename = fullfile( PathName, FileName )
to get the full path of the file name.
As an aside your script is extremely confusing. Why are you reusing the variable a to be both a filename initially then the image you read in and then you are setting it on appdata later on under the title of 'filename' again when it is no longer a filename. Giving your variables sensible names is vital for good programming and understandability.
  1 件のコメント
Varian Adisuryo
Varian Adisuryo 2016 年 7 月 26 日
Thank you so much for your help Mr. Adam. I'm very sorry if my script very confusing, I'm a beginner at this. I will try to correct it. Thank you so much

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by