ImgLblReader

The ImgLblReader class is used to load images from various paths into NumPy arrays and parsing their labels. Currently, the ImgLblReader 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.

At the moment, ImgLblReader only parses ball annotations in ‘AI Ball’ format of the Bit-Bots ImageTagger.

Instantiate

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

Methods