(self, angles=[0, 90, 180, 270])
| 50 | class Rotate(object): |
| 51 | """rotation""" |
| 52 | def __init__(self, angles=[0, 90, 180, 270]): |
| 53 | self.angles = angles |
| 54 | |
| 55 | def __call__(self, img): |
| 56 | angle = np.random.choice(self.angles) |
nothing calls this directly
no outgoing calls
no test coverage detected