(self, _)
| 73 | self._init(locals()) |
| 74 | |
| 75 | def get_transform(self, _): |
| 76 | return TransformFactory(name=str(self), apply_image=lambda img: self._impl(img)) |
| 77 | |
| 78 | def _impl(self, img): |
| 79 | img_shape = img.shape[:2] |
nothing calls this directly
no test coverage detected