ImgReader

The ImgReader class is used to load images from various paths into NumPy arrays without considering any labels. Currently, the ImgReader class creates an iterator to iterate over all images in a random order and shuffles its internal order after visiting each image exactly once. Future release will cover more features.

Instantiate

dat = ImgReader(pathlist: List[str],
                batch_size: int = 1,
                queue_size: int = 16,
                processes: int = None,
                img_dim: tuple = (200, 150),
                wait_for_queue_full = True,
                filter_labels = False)

Methods