필터 지우기
필터 지우기

Hi. I have 11 images in a folder and I want to read and display them. I tried few of ur codes bt the images displayed are nt sorted. plz help me

조회 수: 1 (최근 30일)
Hi. I have 11 images in a folder and I want to read and display them. I tried few of ur codes bt the images displayed are nt sorted. plz help me

답변 (2개)

Stephen23
Stephen23 2017년 4월 3일
편집: Stephen23 2021년 5월 4일
Taking a guess that the order should be alphanumeric, in which case you could download my FEX submission natsortfiles which sorts filenames alphanumerically. The submission includes lots of examples, so you should read its documentation carefully:
P = 'C:\Test';
S = dir(fullfile(P,'*.txt'));
S = natsortfiles(S);
for k = 1:numel(S)
F = fullfile(P,S(k).name)
... your code
end

Amruta Talreja
Amruta Talreja 2017년 4월 4일
But there is an error with nat sort that it is undefined function
  댓글 수: 1
Stephen23
Stephen23 2017년 4월 4일
편집: Stephen23 2017년 4월 4일
Read my answer again: the very first line that I wrote states that you will need to "download my FEX submssion", and I also gave the link:
  1. Click on that link.
  2. Click on the big blue button "Download".
  3. Save the zip file.
  4. Uinzip the zip file into your current directory.
  5. You are now ready to use my FEX submssion natsortfiles.
I did not write that link an d tell you to download the file just for my own entertainment: it is because if you want to use my FEX submission you need to download it. So that is what I told you to do.

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

카테고리

Help CenterFile Exchange에서 Downloads에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by