Work on depth based point cloud masking

This commit is contained in:
Astatin3
2024-08-18 19:08:30 -06:00
parent c1a21f70c3
commit 3c0d3635c9
50 changed files with 2263 additions and 2069 deletions
+2 -1
View File
@@ -25,6 +25,7 @@ def run_loop():
clientsocket.connect(('localhost', 65000))
print("Connected!")
while running:
points, colors = k.get_ptcld(colorized=True, scale=10)
@@ -51,7 +52,7 @@ def run_loop():
# reconstruction.points = o3d.utility.Vector3dVector(points)
# reconstruction.colors = o3d.utility.Vector3dVector(colors)
# vis.update_geometry(reconstruction)
#
for i in range(len(points)):
point = points[i]
color = colors[i]