1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 读取.bin激光雷达点云文件格式并可视化

读取.bin激光雷达点云文件格式并可视化

时间:2021-12-24 03:13:52

相关推荐

读取.bin激光雷达点云文件格式并可视化

link

代码在git

pip install numpy -i https://pypi.tuna./simplepip install mayavi -i https://pypi.tuna./simple

import numpy as npimport mayavi.mlab# lidar_path换成自己的.bin文件路径pointcloud = np.fromfile(str("lidar_path"), dtype=np.float32, count=-1).reshape([-1, 4])x = pointcloud[:, 0] # x position of pointy = pointcloud[:, 1] # y position of pointz = pointcloud[:, 2] # z position of pointr = pointcloud[:, 3] # reflectance value of pointd = np.sqrt(x ** 2 + y ** 2) # Map Distance from sensordegr = np.degrees(np.arctan(z / d))vals = 'height'if vals == "height":col = zelse:col = dfig = mayavi.mlab.figure(bgcolor=(0, 0, 0), size=(640, 500))mayavi.mlab.points3d(x, y, z,col, # Values used for Colormode="point",colormap='spectral', # 'bone', 'copper', 'gnuplot'# color=(0, 1, 0), # Used a fixed (r,g,b) insteadfigure=fig,)mayavi.mlab.show()

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。