Matlab Help: Loading a Series of images into matlab

2 views (last 30 days)
So basically all the image files to the left of this screenshot are the images i am trying to load in, Im assuming I need a for loop to do so? was wondering if anyone could provide code or some help in general

Answers (1)

KSSV
KSSV on 10 Nov 2020
This question has been asked many times.
tifFiles = dir("*.tif") ;
N = length(tifFiles) ;
for i = 1:N
thisFile = tifFiles(i).name ;
% Do what you want
end

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!