(self, path: str)
| 276 | return H, W, K, R, T, n, f, t, v, bounds |
| 277 | |
| 278 | def export_keyframes(self, path: str): |
| 279 | # Store keyframes to path |
| 280 | cameras = {f'{i:06d}': k.to_easymocap() for i, k in enumerate(self.keyframes)} |
| 281 | write_camera(cameras, path) # without extri.yml, only dirname |
| 282 | log(yellow(f'Keyframes saved to: {blue(path)}')) |
| 283 | |
| 284 | def load_keyframes(self, path: str): |
| 285 | # Store keyframes to path |
no test coverage detected