how to read list of files in correct sequence.

2 次查看(过去 30 天)
i have a folder containing files (images) named 1,2,....300, when i make filelist of the folder to use the files, matlab use the following sequance 1,10,101,..109,11,110....
how can i make the list in the correct file sequance .
Note: files are images used in image processing.
  5 个评论
Walter Roberson
Walter Roberson 2016-7-15
Do not pass it the directory information: pass it the file names extracted from the directory information. For example,
dinfo = dir('*.tif');
filenames = {dinfo.name};
sorted_filenames = sort_nat_file(filenames);
Stephen23
Stephen23 2021-5-4
Your could download my FEX submission natsortfiles, which was written to solve exactly this problem:
S = dir(..);
S = natsortfiles(S);

请先登录,再进行评论。

回答(3 个)

Walter Roberson
Walter Roberson 2016-7-15
编辑:Walter Roberson 2016-7-15

Image Analyst
Image Analyst 2016-7-15
See blog discussion of this "Pick of the week": http://blogs.mathworks.com/pick/2014/12/05/natural-order-sorting/

Azzi Abdelmalek
Azzi Abdelmalek 2016-7-15
编辑:Azzi Abdelmalek 2016-7-15
Your names look like this
s=arrayfun(@num2str,1:100,'un',0)
a=sort(s)
To sort them as you want
[~,ii]=sort(str2double(a))
out=a(ii)

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by