- 博客(4)
- 收藏
- 关注
原创 无法解析的外部符号 LZ4_resetStreamHC
vs版本2022 pcl 1.13报错,在常规链接器中添加flann.lib,直接在编附加依赖项中写上就行。
2024-03-30 11:06:17 166
原创 open3d: 正态估计
#顶点正态估计import open3d as o3dimport numpy as npprint("Load a ply point cloud, print it, and render it")pcd = o3d.io.read_point_cloud("fragment.ply")print(pcd)print(np.asarray(pcd.points))print("Recompute the normal of the downsampled point cloud")#体.
2021-12-17 19:48:04 534
原创 open3d:例程二:体素降采样
体素降采样使用常规体素网格从输入点云创建均匀的缩减采样点云。它通常用作许多点云处理任务的预处理步骤。该算法分两步运行: 点被收集到体素中。 把点云分配在三维网格中取平均值 import open3d as o3dimport numpy as npprint("Load a ply point cloud, print it, and render it")pcd = o3d.io.read_point_cloud("fragment.ply")print(pc...
2021-12-17 16:53:33 942
转载 open3d:例程一 可视化点云
import open3d as o3dimport numpy as npprint("Load a ply point cloud, print it, and render it")pcd = o3d.io.read_point_cloud("fragment.ply")print(pcd)print(np.asarray(pcd.points))o3d.visualization.draw_geometries([pcd], .
2021-12-17 16:06:06 463
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人