I have a folder with 1500 images. I need to process the first 200 images(ie, 1 to 200). I used for loop it. But when i run the code i starts from 1,2,3 ... 100. then instead if going for 101th image, its value changes to 1001 , 1002... and so on.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
jeffin
el 8 de Feb. de 2016
start:1
stop:200
for i = start : stop
XX
end
But i need to continue from 101, 102,... after 100. Kindly help me identify the problem.
0 comentarios
Respuesta aceptada
Stephen23
el 8 de Feb. de 2016
Editada: Stephen23
el 26 de Abr. de 2021
The easiest solution is to use my FEX submission natsortfiles. It fixes the order of an ASCII sort to take into account any numeric values in the strings. Note that it requires the file natsort to work!
It simply sorts a cell array of filenames into the order you want:
S = dir('*.jpg');
S = natsortfiles(S);
for k = 1:200 % first 200 files
F = S(k).name;
... your code
end
Note that this answer assumes that your files are sequentially numbered without any gaps. If this is not true, then you need to give more information on the filenaming logic.
2 comentarios
Stephen23
el 8 de Feb. de 2016
Editada: Stephen23
el 26 de Abr. de 2021
Here is one way of solving your task using my answer:
P = 'E:\New Folder';
S = dir(fullfile(P,'*.tif'));
S = natsortfiles(S);
for k = 1:200
F = fullfile(P,S(k).name);
I = imread(F);
figure;
imshow(I);
end
Note:
- you will need to download NATSORTFILES.
- I changed the loop variable from i to k, because in MATLAB i is the imaginary unit.
- I used fullfile to create the path strings, which is much more robust than using strcat.
Más respuestas (1)
Image Analyst
el 8 de Feb. de 2016
2 comentarios
Image Analyst
el 9 de Feb. de 2016
Stephen, you should notice that first link I gave actually talks about your submission as the "Pick of the Week".
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!