如何将 .pcd 文件中的所有点导入 2d python 数组
how to import all the points from a .pcd file into a 2d python array
如何从名为 edge_cloud.pcd 的文件中导入所有 3d 点并将它们放入数组中?我希望数组的格式为
array=[[xvalue1,yvalue1,zvalue1],[xvalue2,yvalue2,zvalue2]]
使用 Python 3.7.3、numpy
1.16.2 和 open3d
0.7.0.0 测试:
import numpy as np
import open3d as o3d
pcd = o3d.io.read_point_cloud("C:\Users\Username\Source\pointcloud\bunny.pcd")
out_arr = np.asarray(pcd.points)
print("output array from input list : ", out_arr)
输出:
output array from input list :
[[ 0.0054216 0.11349 0.040749 ]
[-0.0017447 0.11425 0.041273 ]
[-0.010661 0.11338 0.040916 ]
...
[-0.064992 0.17802 -0.054645 ]
[-0.069935 0.17983 -0.051988 ]
[-0.07793 0.17516 -0.0444 ]]
输入PCD文件:
https://github.com/PointCloudLibrary/pcl/blob/master/test/bunny.pcd
使用 python 3.8 进行测试,使用 pypcd.
访问 pcd 文件
使用以下命令安装
pip install pypcd
如果没有安装,请尝试以下命令
python -m pip install --user git+https://github.com/DanielPollithy/pypcd.git
安装完成后,您可以使用以下代码将 pcd 加载到 numpy 数组。
from pypcd import pypcd
pc = pypcd.PointCloud.from_path("demo.pcd")
pc_data = pc.pc_data
pc_array = np.array([pc_data["x"], pc_data["y"], pc_data["z"]], dtype=np.float32)
如何从名为 edge_cloud.pcd 的文件中导入所有 3d 点并将它们放入数组中?我希望数组的格式为
array=[[xvalue1,yvalue1,zvalue1],[xvalue2,yvalue2,zvalue2]]
使用 Python 3.7.3、numpy
1.16.2 和 open3d
0.7.0.0 测试:
import numpy as np
import open3d as o3d
pcd = o3d.io.read_point_cloud("C:\Users\Username\Source\pointcloud\bunny.pcd")
out_arr = np.asarray(pcd.points)
print("output array from input list : ", out_arr)
输出:
output array from input list :
[[ 0.0054216 0.11349 0.040749 ]
[-0.0017447 0.11425 0.041273 ]
[-0.010661 0.11338 0.040916 ]
...
[-0.064992 0.17802 -0.054645 ]
[-0.069935 0.17983 -0.051988 ]
[-0.07793 0.17516 -0.0444 ]]
输入PCD文件:
https://github.com/PointCloudLibrary/pcl/blob/master/test/bunny.pcd
使用 python 3.8 进行测试,使用 pypcd.
访问 pcd 文件使用以下命令安装
pip install pypcd
如果没有安装,请尝试以下命令
python -m pip install --user git+https://github.com/DanielPollithy/pypcd.git
安装完成后,您可以使用以下代码将 pcd 加载到 numpy 数组。
from pypcd import pypcd
pc = pypcd.PointCloud.from_path("demo.pcd")
pc_data = pc.pc_data
pc_array = np.array([pc_data["x"], pc_data["y"], pc_data["z"]], dtype=np.float32)