Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fvdb_reality_capture/transforms/normalize_scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down
Loading