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