Return the split json dict.
(scene_dir: Path)
| 59 | |
| 60 | |
| 61 | def load_split_info(scene_dir: Path): |
| 62 | """Return the split json dict.""" |
| 63 | with open(scene_dir / "split_info.json", "r", encoding="utf-8") as f: |
| 64 | return json.load(f) |
| 65 | |
| 66 | |
| 67 | def load_camera_poses(scene_dir: Path, split_idx: int): |