How do I load my Dataset into Matlab using imageDatastore ??

1 view (last 30 days)
My dataset "Z" is a folder that has sub folders ('Z1-Z40'); each sub-folder contains images. Using imageDatastore function, How do I load my entire dataset 'Z' in Matlab. I have tried severally but wasn't successful. Thank you.
if true
% code
end

Answers (1)

T.Nikhil kumar
T.Nikhil kumar on 9 Jul 2022
Hey Ike!
As per my understanding ,you want to load the data from datset into matlab and create an imageDatastore.
To include all the images from your subfolders into the imagedatastore you must set the value of IncludeSubfolders property to true. The command is as follows:
imds = imageDatastore(fullPath,"IncludeSubfolders",true)
Here fullPath is the full file path of Z folder ,
I suggest you to go through the following link for reference:

Community Treasure Hunt

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

Start Hunting!