(self, img)
| 147 | Flip around the x-axis |
| 148 | """ |
| 149 | def __call__(self, img): |
| 150 | img = np.array(img)[:, :, ::-1] |
| 151 | return Image.fromarray(img.astype(np.uint8)) |
| 152 | |
| 153 | |
| 154 | class RandomGaussianBlur(object): |
nothing calls this directly
no outgoing calls
no test coverage detected