jens commited on
Commit
7983744
·
1 Parent(s): effc523
Files changed (1) hide show
  1. 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.01, height=0.01, depth=0.01)
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