Filter löschen
Filter löschen

how to read image from folder with many subfolder directories

14 Ansichten (letzte 30 Tage)
I need to read images from many subfolders in a fixed folder for further processing of image in a loop.
For better understaning a flowchart is given here.
My matlab code and datasetImage folder are in same folder.I need to read image .tif image in every subfolders.For note there are some folders which is missing like IM005.It will be very helpfull if anyone can help me to read ***.TIF file for further processing.Thanks in advance.

Akzeptierte Antwort

Image Analyst
Image Analyst am 28 Mär. 2020
Try this:
% Get a list of all TIFF files in the current folder AND in all subfolders below it.
fileListing = dir('**/*.tif*');
% For each file we learned of, process it...
numberOfFiles = length(fileListing)
for k = 1 : numberOfFiles
% Get the full filename (folder & base file name) of this particular file.
thisFullFileName = fullfile(fileListing(k).folder, fileListing(k).name);
fprintf('Processing image %d of %d : %s...\n', k, numberOfFiles, thisFullFileName);
% Now do something with this image. For example, display it:
% First read image into a variable.
thisImage = imread(thisFullFileName);
% Now display it.
imshow(thisImage);
drawnow; % Force immediate refresh of screen.
% Now perform other operations on the image if you want...
end
  1 Kommentar
Image Analyst
Image Analyst am 28 Mär. 2020
It doesn't matter if some files or folders are "missing" - the fileListing will contain a list of only those files that are there and process only those. You can put your feature extraction below the line of code that says "Now perform other operations...".

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Ameer Hamza
Ameer Hamza am 28 Mär. 2020
Try something like this
files = dir('**/*.tiff');
for i=1:numel(files)
filename = fullfile(files(i).folder, files(i).name);
% do preocessing on images. for example:
im = imread(filename);
% more code
end
  6 Kommentare
Zesen
Zesen am 16 Nov. 2022
thank you handsome man!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by