Return shuffled version of datastore
shuffle(ds)
example
shuffle(ds) returns a randomly shuffled version of the input datastore.
ds
collapse all
Set the location of the image and pixel label data.
dataDir = fullfile(toolboxdir('vision'), 'visiondata'); pxDir = fullfile(dataDir, 'buildingPixelLabels');
Create a pixel label datastore.
classNames = ["sky" "grass" "building" "sidewalk"]; pixelLabelID = [1 2 3 4]; pxds = pixelLabelDatastore(pxDir, classNames, pixelLabelID);
Create a new randomly shuffled datastore.
shpxds = shuffle(pxds);
boxLabelDatastore
pixelLabelDatastore
pixelLabelImageDatastore
Datastore with labeled data for training a semantic segmentation network or an object detection network, specified as a boxLabelDatastore, pixelLabelDatastore, or a pixelLabelImageDatastore object.
objectDetectorTrainingData
datastore
You have a modified version of this example. Do you want to open this example with your edits?