(self,
crop_size: Optional[Union[int, None]] = None)
| 17 | crop_size (int): The size of the cropped motion sequence. |
| 18 | """ |
| 19 | def __init__(self, |
| 20 | crop_size: Optional[Union[int, None]] = None): |
| 21 | self.crop_size = crop_size |
| 22 | assert self.crop_size is not None |
| 23 | |
| 24 | def __call__(self, results): |
| 25 | motion = results['motion'] |
nothing calls this directly
no outgoing calls
no test coverage detected