(self, clip)
| 338 | self.interpolation_mode = interpolation_mode |
| 339 | |
| 340 | def __call__(self, clip): |
| 341 | clip_random_crop = random_shift_crop(clip) |
| 342 | clip_resize = resize(clip_random_crop, self.size, self.interpolation_mode) |
| 343 | return clip_resize |
| 344 | |
| 345 | |
| 346 | class CenterCropVideo: |
nothing calls this directly
no test coverage detected