dataeval.utils.data.Images

class dataeval.utils.data.Images(dataset)

Collection of image data from a dataset.

Images are accessed by index or slice and are only loaded on-demand.

Parameters:
dataset : ImageClassificationDataset or ObjectDetectionDataset

Dataset to access images from.

to_list()

Converts entire dataset to a sequence of images.

Warning

Will load the entire dataset and return the images as a single sequence of images in memory.

Return type:

list[TArray]