필터 지우기
필터 지우기

put all images of a directory in listbox

조회 수: 2 (최근 30일)
malek el pikho
malek el pikho 2014년 1월 20일
댓글: Image Analyst 2014년 1월 20일
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일
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일
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일
no no no its done thanks a lot
Image Analyst
Image Analyst 2014년 1월 20일
Then mark it as accepted.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by