Azzera filtri
Azzera filtri

How to read input images from the folder sequentially

2 visualizzazioni (ultimi 30 giorni)
S.A
S.A il 9 Apr 2018
Commentato: Jan il 19 Mar 2022
Hello, In my work I'm giving input as a folder of facial photos which consists of 10 images. The output enhanced images are getting stored in separate folder But the problem is, it is not getting stored in the same order as that of the images passed through input folder. The images are read randomly.

Risposte (2)

KALYAN ACHARJYA
KALYAN ACHARJYA il 9 Apr 2018
Modificato: KALYAN ACHARJYA il 9 Apr 2018
% Save all images name in a sequence manner before doing the operation
% names for example im1,im2,im3...
%Save the folder of images in the current directory
path_directory='folder_name'; % 'Folder name'
original_files=dir([path_directory '/*.jpg']);
for k=1:length(original_files)
filename=[path_directory '/' original_files(k).name];
image_orginal=imread(filename);
% Image read is done
%%Image Operation as per your work
end
  5 Commenti
Halee Scott
Halee Scott il 18 Mar 2022
Where would fullfile be used in the script then? Sorry I am new to coding and adapting this to create a for loop that changes file types (.oib to .tiff) and saves the new files in a different folder.

Accedi per commentare.


Stephen23
Stephen23 il 15 Ago 2018
Modificato: Stephen23 il 23 Apr 2020
Presumably the filenames have numbers in them, and you are getting them listed not in numeric order...One solution is to download my FEX submission natsortfiles, which was written to solve that exact problem:
There are plenty of examples in the Mfile, in the online description, and in the HTML documentation, so you should not have any problems using it. You will probably want something like this:
D = 'path of the folder where the files are';
S = dir(fullfile(D,'*.txt'));
F = natsortfiles({S.name});
for k = 1:numel(F)
im = imread(fullfile(D,F{k}))
...
end
  5 Commenti
Manuella Juwita
Manuella Juwita il 29 Giu 2020
Hello,
I want to ask, how to use natsortfiles to sort alphanumerically overlaying plots in one figure? I find it difficult to match one plot to another because they have different directories and names.
Jan
Jan il 19 Mar 2022
@Manuella Juwita: What are "alphanumerically overlaying plots in one figure"? Plots do not have directories.

Accedi per commentare.

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by