:param cache_file: The location of the cache file.
(self, cache_file)
| 39 | """ |
| 40 | |
| 41 | def __init__(self, cache_file): |
| 42 | """ |
| 43 | :param cache_file: The location of the cache file. |
| 44 | """ |
| 45 | super().__init__() |
| 46 | self.cache_file = cache_file |
| 47 | self.image_batcher = None |
| 48 | self.batch_allocation = None |
| 49 | self.batch_generator = None |
| 50 | |
| 51 | def set_image_batcher(self, image_batcher: ImageBatcher): |
| 52 | """ |