基于点云的目标检测
Anniessq
这个作者很懒,什么都没留下…
展开
-
python——点云可视化(分割结果,及特征)
点云的特征可视化代码样例:#### 特征可视化import matplotlib.pyplot as pltfrom mpl_toolkits.mplot3d import Axes3Dimport numpy as nppoints = np.loadtxt('data.txt')skip = 20 # Skip every n pointsfig = plt.figure...原创 2020-03-02 09:40:40 · 10048 阅读 · 1 评论 -
LiDAR(Light Detection and Ranging光检测与距离修正)
LiDAR(Light Detection and Ranging光检测与距离修正)激光雷达三个独立模块:激光测距模块GPSIMU系统(惯性测量单位)原创 2019-05-31 09:03:28 · 3084 阅读 · 0 评论 -
PointNet代码阅读笔记
第一步:了解数据集和数据预处理ModelNet数据集改数据集是由论文[3D ShapeNets: A Deep Representation for Volumetric Shapes]提出的,按照模具的类别分:1. ModelNet[10]包含10个类别- 每一种类别中模具的个数不等模具的方向已经对齐2. ModelNet[40]包含40个类别分为对齐之后的和未对齐的。...原创 2019-06-15 22:16:27 · 975 阅读 · 0 评论