
点云
激光雷达无疑是无人驾驶感知的一把利器,由此激光点云的处理就变得尤为重要。那就努力学好吧,希望有更多喜欢无人驾驶的朋友共同交流,一起进步!!!
enginelong
无人驾驶,智能的未来
展开
-
Kd_tree、八叉树的构建查找及优化
Kd_tree 的构建思路:循环沿着x、y、z轴的方向进行排序、切分、递归 point_indices_left_end_idx = math.ceil(len(point_indices_sorted) / 2) - 1 # 左半部分终止索引 point_sorted_middle_left = point_indices_sorted[point_indices_left_end_idx] # 左半部分末端值 point_indices_left_end_value = db[point_sor原创 2020-07-13 00:17:44 · 1107 阅读 · 2 评论 -
PCA降维、法向量估计、点云体素及FPS滤波
PCA降维、法向量估计 # 实现PCA分析和法向量计算,并加载数据集中的文件进行验证 import open3d as o3d import os import numpy as np from pyntcloud import PyntCloud from pandas import DataFrame import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # matplotlib显示点云函数 def Poin原创 2020-07-03 04:58:05 · 2607 阅读 · 12 评论