0
点赞
收藏
分享

微信扫一扫

Open 3D Python Interface

金牛豆豆 2022-07-12 阅读 131


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) 提供函数描述


举报

相关推荐

0 条评论