Clear Filters
Clear Filters

Split data set into training and test set however labels not linked to imds

4 views (last 30 days)
I have a dataset of images (tiff files) and a seperate Labels.mat file containing the labels 1 or 0. I want to split the dataset into a training and test set however i dont know how to couple the labels to the imds. Can someone help me to create the training and test set?

Answers (1)

Amey Waghmare
Amey Waghmare on 4 Jan 2023
Hi,
As per my understanding, you have a dataset of images and a separate labels file and want to couple the labels with the images so as to split the dataset into training and test set.
After creating the Image Datastore ‘imds’, the labels for the files can be set using the ‘Labels’ property of the datastore as follows,
imds.Labels = label
This would link the labels to the images in the datastore. The ‘label’ for the files can be specified as a vector, a cell array or a string array.
For more information, please refer to the Image datastore documentation: https://in.mathworks.com/help/matlab/ref/matlab.io.datastore.imagedatastore.html

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!