(self, min_max=(-1, 1))
| 804 | # ----------------------Patch Cropping---------------------------- |
| 805 | class Clamper: |
| 806 | def __init__(self, min_max=(-1, 1)): |
| 807 | self.min_bound, self.max_bound = min_max[0], min_max[1] |
| 808 | |
| 809 | def __call__(self, im): |
| 810 | if isinstance(im, np.ndarray): |
nothing calls this directly
no outgoing calls
no test coverage detected