Return ordered candidate video file paths to probe.
(self, evaluation_path: Path, motion_id: int)
| 96 | return candidates |
| 97 | |
| 98 | def _video_candidates(self, evaluation_path: Path, motion_id: int) -> List[Path]: |
| 99 | """Return ordered candidate video file paths to probe.""" |
| 100 | candidates = [] |
| 101 | candidates.append(evaluation_path / f"{motion_id}.mp4") |
| 102 | return candidates |
| 103 | |
| 104 | def _find_source_motion_path(self, evaluation_path: str, category: str, motion_id: int) -> Optional[Path]: |
| 105 | """Locate the raw motion file for a given category/id.""" |
no outgoing calls
no test coverage detected