(self, img)
| 40 | |
| 41 | class FlipChannels(object): |
| 42 | def __call__(self, img): |
| 43 | img = np.array(img)[:, :, ::-1] |
| 44 | return Image.fromarray(img.astype(np.uint8)) |
| 45 | |
| 46 | |
| 47 | class RandomGaussianBlur(object): |
nothing calls this directly
no outgoing calls
no test coverage detected