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 ビュー (過去 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
1 件のコメント
Jan
2017 年 4 月 3 日
Sorted according to which criterion? Please show the code and explain the problem explicitely.
回答 (2 件)
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
0 件のコメント
Amruta Talreja
2017 年 4 月 4 日
1 件のコメント
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:
- Click on that link.
- Click on the big blue button "Download".
- Save the zip file.
- Uinzip the zip file into your current directory.
- 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 Center および File Exchange で Downloads についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!