| 32 | from SMCReader import SMCReader |
| 33 | |
| 34 | class CameraInfo(NamedTuple): |
| 35 | uid: int |
| 36 | R: np.array |
| 37 | T: np.array |
| 38 | FovY: np.array |
| 39 | FovX: np.array |
| 40 | image: np.array |
| 41 | image_path: str |
| 42 | image_name: str |
| 43 | width: int |
| 44 | height: int |
| 45 | K: Optional[np.array] = None ### for DNA-Rendering |
| 46 | use_K: Optional[bool] = False ### for DNA-Rendering |
| 47 | |
| 48 | class SceneInfo(NamedTuple): |
| 49 | point_cloud: BasicPointCloud |
no outgoing calls
no test coverage detected