| 7 | |
| 8 | |
| 9 | class RandomVerticalFlip(object): |
| 10 | def __call__(self, img): |
| 11 | if random.random() < 0.5: |
| 12 | return img.transpose(Image.FLIP_TOP_BOTTOM) |
| 13 | return img |
| 14 | |
| 15 | |
| 16 | class DeNormalize(object): |
nothing calls this directly
no outgoing calls
no test coverage detected