put all images of a directory in listbox

how can i put all images of a directory in listbox and then select one of them to do image to show in axes

回答 (2 件)

Walter Roberson
Walter Roberson 2014 年 1 月 20 日

0 投票

will give you information on getting the image names. Once you have them in a cell string array, you can set() the listbox String property to that cell string array.
In the callback for the listbox,
choices = get(hObject, 'String');
selected = get(hObject, 'Value');
thischoice = choices{selected};
David Sanchez
David Sanchez 2014 年 1 月 20 日

0 投票

my_pngs = dir('*.png'); % choose png files from directory
pics_cell = cell(numel(my_pngs),1);
for k=1:numel(my_pngs)
pics_cell{k} = my_pngs(k).name;
end
set(handles.my_list,'String',pics_cell) % my_list is the name of your listbox

8 件のコメント

malek el pikho
malek el pikho 2014 年 1 月 20 日
i put this in listbox_callback
malek el pikho
malek el pikho 2014 年 1 月 20 日
but nothing shown
Walter Roberson
Walter Roberson 2014 年 1 月 20 日
編集済み: Walter Roberson 2014 年 1 月 20 日
It does not go in the listbox callback, it goes in the place you want to trigger the initialization of the listbox.
Walter Roberson
Walter Roberson 2014 年 1 月 20 日
David, more efficient:
my_pngs = dir('*.png');
pics_cell = {my_pngs.name};
set(handles.my_list, 'String', pics_cell);
malek el pikho
malek el pikho 2014 年 1 月 20 日
編集済み: malek el pikho 2014 年 1 月 20 日
yes it's done iput a pushbuton to initialise the listbox the problem now is in set(handles.my_list, 'String', pics_cell); it show only one image in the listbox how can show all the images
malek el pikho
malek el pikho 2014 年 1 月 20 日
images are shown in the first index only how to increment index in listbox
malek el pikho
malek el pikho 2014 年 1 月 20 日
no no no its done thanks a lot
Image Analyst
Image Analyst 2014 年 1 月 20 日
Then mark it as accepted.

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

カテゴリ

ヘルプ センター および File ExchangeInteractive Control and Callbacks についてさらに検索

製品

質問済み:

2014 年 1 月 20 日

コメント済み:

2014 年 1 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by