(self, iteration)
| 90 | self.gaussians.create_from_pcd(scene_info.point_cloud, self.cameras_extent) |
| 91 | |
| 92 | def save(self, iteration): |
| 93 | torch.save((self.gaussians.capture(), iteration), self.model_path + "/chkpnt" + str(iteration) + ".pth") |
| 94 | |
| 95 | def getTrainCameras(self, scale=1.0): |
| 96 | return CameraDataset(self.train_cameras[scale].copy(), self.white_background) |