Spaces:
Runtime error
Runtime error
jens
commited on
Commit
·
7983744
1
Parent(s):
effc523
fix
Browse files- inference.py +1 -1
inference.py
CHANGED
@@ -81,7 +81,7 @@ class DepthPredictor:
|
|
81 |
mesh = o3d.geometry.TriangleMesh()
|
82 |
# Create cubes and add them to the mesh
|
83 |
for point, color in zip(point_cloud, color_array):
|
84 |
-
cube = o3d.geometry.TriangleMesh.create_box(width=0.
|
85 |
cube.translate(point)
|
86 |
cube.paint_uniform_color(color)
|
87 |
mesh += cube
|
|
|
81 |
mesh = o3d.geometry.TriangleMesh()
|
82 |
# Create cubes and add them to the mesh
|
83 |
for point, color in zip(point_cloud, color_array):
|
84 |
+
cube = o3d.geometry.TriangleMesh.create_box(width=0.0001, height=0.0001, depth=0.0001)
|
85 |
cube.translate(point)
|
86 |
cube.paint_uniform_color(color)
|
87 |
mesh += cube
|