Clear Filters
Clear Filters

how to read image from folder with many subfolder directories

14 views (last 30 days)
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.

Accepted Answer

Image Analyst
Image Analyst on 28 Mar 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 Comment
Image Analyst
Image Analyst on 28 Mar 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...".

Sign in to comment.

More Answers (1)

Ameer Hamza
Ameer Hamza on 28 Mar 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 Comments

Sign in to comment.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!