Python Interface
import open3d as o3d
sample_pcd_data = o3d.data.PCDPointCloud()
pcd = o3d.io.read_point_cloud(sample_pcd_data.path)
print(pcd)
Using built-in help function 使用内置帮助help()
help(open3d) 打印open3d的描述
help(open3d.PointCloud) 提供类PointCloud的描述
help(open3d.read_point_cloud) 提供函数描述