自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 无法解析的外部符号 LZ4_resetStreamHC

vs版本2022 pcl 1.13报错,在常规链接器中添加flann.lib,直接在编附加依赖项中写上就行。

2024-03-30 11:06:17 127

原创 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 489

原创 opem3d:例程二:体素降采样

体素降采样使用常规体素网格从输入点云创建均匀的缩减采样点云。它通常用作许多点云处理任务的预处理步骤。该算法分两步运行: 点被收集到体素中。 把点云分配在三维网格中取平均值 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 877

转载 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 407

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除