i want to ask about compare string
i want to select file use this code
[FileName,PathName] = uigetfile('*.jpg','Select the jpg-file');
handles.gambar=imread(fullfile(PathName, FileName));
image(handles.gambar)
axis off
guidata(hObject, handles);
could i compare the filename of the image that i've selected ?
for example the image filename is "image1"
TF = strcmp(handles.gambar,image1)
if i choose the right image the TF would become 1, if wrong then it would become 0..
i already try to compare it but error any suggest ? sorry if my english is bad

 採用された回答

Matt Fig
Matt Fig 2011 年 6 月 13 日

0 投票

If you want to compare the name of the file, use the result returned from UIGETFILE. Of course if this will be used later, you will need to store it in GUIDATA.
[FileName,PathName] = uigetfile('*.jpg','Select the jpg-file');
TF = strcmp(FileName,'image1.jpg')

1 件のコメント

danny agus
danny agus 2011 年 6 月 13 日
thanks it works

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および 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