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)
pathlist
: a list of strings describing each path thatImgReader
should check for imagesbatch_size
: images are automatically stored in batches with an alterable batch sizequeue_size
: size of the internal multiprocessing queue; this setting affects memory usageprocesses
: by default half of the available CPU cores are used, but you can define any number of worker processes manuallyimg_dim
: (width, height) to resize each image towait_for_queue_full
: whether or not the internal queue should block access before being filled for the first timefilter_labels
: deprecated; will be removed in a future release
Methods
get_dataset_size()
: returns the total number of images in all given pathsget_max_queue_size()
: returns the queue’s capacityget_next_img_batch()
: pops the next image batch from queue; blocks automatically if queue is empty; each batch consists of a tuple:(np.ndarray, list) -> (img_data, img_filepaths)