(self, CropSize=0.1)
| 73 | import random, cv2 |
| 74 | class RandomCrop(object): |
| 75 | def __init__(self, CropSize=0.1): |
| 76 | self.CropSize = CropSize |
| 77 | |
| 78 | def __call__(self, image, normal): |
| 79 | h, w = normal.shape[:2] |
nothing calls this directly
no outgoing calls
no test coverage detected