Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

changing the size of open3d point cloud

Tags:

python

open3d

I am trying to visualize the point clouds using the following code but I can't find the way to adjacent the point size. Although there is a parameter point_size= with o3d.visualization.draw([pcd], point_size=5) but i want to use draw_geometries for this work. Any help will be much appreciated

pcd = o3d.io.read_point_cloud("000010.pcd")
o3d.visualization.draw_geometries([pcd])

enter image description here

like image 866
ammar naich Avatar asked Sep 18 '25 10:09

ammar naich


1 Answers

You can use + to increase the point size and - to decrease the point size in the draw_geometry visualization window.

By the way, you can use H to get help information.

like image 200
Chen Wang Avatar answered Sep 20 '25 01:09

Chen Wang