(self,
min_size: Optional[Union[int, None]] = None,
max_size: Optional[Union[int, None]] = None)
| 58 | max_size (int or None): The maximum size of the cropped motion sequence (inclusive). |
| 59 | """ |
| 60 | def __init__(self, |
| 61 | min_size: Optional[Union[int, None]] = None, |
| 62 | max_size: Optional[Union[int, None]] = None): |
| 63 | self.min_size = min_size |
| 64 | self.max_size = max_size |
| 65 | assert self.min_size is not None |
| 66 | assert self.max_size is not None |
| 67 | |
| 68 | def __call__(self, results): |
| 69 | motion = results['motion'] |
nothing calls this directly
no outgoing calls
no test coverage detected