(self, size, interpolation=Image.BILINEAR)
| 89 | """ |
| 90 | |
| 91 | def __init__(self, size, interpolation=Image.BILINEAR): |
| 92 | self.worker = torchvision.transforms.Resize(size, interpolation) |
| 93 | |
| 94 | def __call__(self, img_group): |
| 95 | return [self.worker(img) for img in img_group] |
nothing calls this directly
no outgoing calls
no test coverage detected