Open3D无效点云过滤删除

发布时间:2024年01月06日

由于原始点云中有大量无效的点云数据。发现通过过滤的方式最方便

我的点云数据中Z无效的点云都为-32768 只要过滤掉大于-32768的数据就行

#加载点云数据
ply = o3d.io.read_point_cloud("source/Foam1.ply") 

# Get the values of the points
points = np.asarray(ply.points)

# Filter the points by z-axis value
filtered_points = points[points[:, 2] > -32700]

# Create a new point cloud with the filtered points
filtered_pcd = o3d.geometry.PointCloud()
filtered_pcd.points = o3d.utility.Vector3dVector(filtered_points)


#pcd = ply.remove_non_finite_points(remove_nan = True, remove_infinite = True) 
o3d.visualization.draw_geometries([ filtered_pcd],window_name="filtered_points") 

文章来源:https://blog.csdn.net/easyboot/article/details/135433631
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。