(self, im, flag=None)
| 469 | pass |
| 470 | |
| 471 | def __call__(self, im, flag=None): |
| 472 | if flag is None: |
| 473 | flag = random.randint(0, 7) |
| 474 | |
| 475 | out = data_aug_np(im, flag) |
| 476 | return out |
| 477 | |
| 478 | # ----------------------Visualization---------------------------- |
| 479 | def imshow(x, title=None, cbar=False): |
nothing calls this directly
no test coverage detected