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

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

답변 (1개)

T.Nikhil kumar
T.Nikhil kumar 2022년 7월 9일
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:

질문:

2018년 4월 9일

답변:

2022년 7월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by