(self, path: str)
| 42 | self.visualizer: open3d.visualization.Visualizer |
| 43 | |
| 44 | def read_model(self, path: str) -> None: |
| 45 | self.reconstruction = pycolmap.Reconstruction(path) |
| 46 | |
| 47 | def add_points( |
| 48 | self, min_track_len: int = 3, remove_statistical_outlier: bool = True |