Spaces:
Paused
Paused
Abdulrahman1989
commited on
Commit
·
aafb120
1
Parent(s):
1598c25
fix
Browse files- Image3DProcessor.py +2 -2
Image3DProcessor.py
CHANGED
@@ -84,8 +84,8 @@ class Image3DProcessor:
|
|
84 |
)
|
85 |
|
86 |
reconstruction = {k: v[0].contiguous() for k, v in reconstruction_unactivated.items()}
|
87 |
-
reconstruction["scaling"] = model.scaling_activation(reconstruction["scaling"])
|
88 |
-
reconstruction["opacity"] = model.opacity_activation(reconstruction["opacity"])
|
89 |
|
90 |
# Render images in a loop
|
91 |
world_view_transforms, full_proj_transforms, camera_centers = get_target_cameras()
|
|
|
84 |
)
|
85 |
|
86 |
reconstruction = {k: v[0].contiguous() for k, v in reconstruction_unactivated.items()}
|
87 |
+
reconstruction["scaling"] = self.model.scaling_activation(reconstruction["scaling"])
|
88 |
+
reconstruction["opacity"] = self.model.opacity_activation(reconstruction["opacity"])
|
89 |
|
90 |
# Render images in a loop
|
91 |
world_view_transforms, full_proj_transforms, camera_centers = get_target_cameras()
|