dataeval.data.Images¶ class dataeval.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 : Dataset[tuple[T, ...]] or Dataset[T]¶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[T]