Run scene detection for test case. Should only be called once.
(self)
| 85 | """Scene boundaries.""" |
| 86 | |
| 87 | def detect(self): |
| 88 | """Run scene detection for test case. Should only be called once.""" |
| 89 | return detect( |
| 90 | video_path=self.path, |
| 91 | detector=self.detector, |
| 92 | start_time=self.start_time, |
| 93 | end_time=self.end_time, |
| 94 | ) |
| 95 | |
| 96 | |
| 97 | def get_fast_cut_test_cases(): |
no test coverage detected