(self, prob)
| 71 | class GroupRandomHorizontalFlip(object): |
| 72 | """Randomly horizontally flips the given PIL.Image with a probability of 0.5""" |
| 73 | def __init__(self, prob): |
| 74 | self.prob = prob |
| 75 | |
| 76 | def flip_flow(self, flow): |
| 77 | # flow: [H, W, 2] |
nothing calls this directly
no outgoing calls
no test coverage detected