(self, x)
| 115 | self.augs.reset_state() |
| 116 | |
| 117 | def _aug_mapper(self, x): |
| 118 | check_dtype(x) |
| 119 | with self._exception_handler.catch(): |
| 120 | if self._copy: |
| 121 | x = copy_mod.deepcopy(x) |
| 122 | return self.augs.augment(x) |
| 123 | |
| 124 | |
| 125 | class AugmentImageCoordinates(MapData): |
nothing calls this directly
no test coverage detected