You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open3dVisualizer runs slowly in my machine. Through debugging, I found that this line of code takes a long time (about 2s).
self.point_cloud.points = o3d.utility.Vector3dVector(points_3d)
If I change the data type before this line of code, the code runtime will be greatly reduced (about 0.03s).
points_3d = points_3d.astype(np.float64)
self.point_cloud.points = o3d.utility.Vector3dVector(points_3d)
The text was updated successfully, but these errors were encountered:
Open3dVisualizer runs slowly in my machine. Through debugging, I found that this line of code takes a long time (about 2s).
self.point_cloud.points = o3d.utility.Vector3dVector(points_3d)
If I change the data type before this line of code, the code runtime will be greatly reduced (about 0.03s).
points_3d = points_3d.astype(np.float64)
self.point_cloud.points = o3d.utility.Vector3dVector(points_3d)
The text was updated successfully, but these errors were encountered: