diff --git a/fvdb_reality_capture/transforms/normalize_scene.py b/fvdb_reality_capture/transforms/normalize_scene.py index b3997c3d..cc5116d6 100644 --- a/fvdb_reality_capture/transforms/normalize_scene.py +++ b/fvdb_reality_capture/transforms/normalize_scene.py @@ -267,7 +267,7 @@ def _compute_normalization_transform(self, input_scene: SfmScene) -> np.ndarray """ if self._normalization_transform is None: points = input_scene.points - world_to_camera_matrices = input_scene.camera_to_world_matrices + world_to_camera_matrices = input_scene.world_to_camera_matrices if points is None or len(points) == 0: self._logger.warning("No points found in the SfmScene.")