(self, iteration)
| 86 | self.gaussians.create_from_pcd(scene_info.point_cloud, self.cameras_extent) |
| 87 | |
| 88 | def save(self, iteration): |
| 89 | point_cloud_path = os.path.join(self.model_path, "point_cloud/iteration_{}".format(iteration)) |
| 90 | self.gaussians.save_ply(os.path.join(point_cloud_path, "point_cloud.ply")) |
| 91 | |
| 92 | def getTrainCameras(self, scale=1.0): |
| 93 | return self.train_cameras[scale] |
nothing calls this directly
no outgoing calls
no test coverage detected