当前位置:网站首页>NuScenes数据集关于Radar数据的统计
NuScenes数据集关于Radar数据的统计
2022-07-06 18:59:00 【naca yu】
- 关注于v1.0-mini版本的雷达数据读取与统计:
from nuscenes.utils.data_classes import RadarPointCloud
import numpy as np
import matplotlib.pyplot as plt
points_list = []
radar_sensor = [ 'RADAR_BACK_LEFT',
'RADAR_BACK_RIGHT',
'RADAR_FRONT',
'RADAR_FRONT_LEFT',
'RADAR_FRONT_RIGHT']
# RadarPointCloud的接口由nuscenes提供
for sample in nusc.sample:
for sensor in radar_sensor:
sensor_token = sample['data'][sensor]
points = RadarPointCloud.from_file(str(nusc.get_sample_data_path(sensor_token))).points.transpose(1,0).astype(np.float32)
points_list.append(points)
print('total points {}'.format(len(points_list)))
point_num = 0
min_points = 2000
max_points = -2
for idx, points in enumerate(points_list):
point_num += points.shape[0]
min_points = min(points.shape[0], min_points)
max_points = max(points.shape[0], max_points)
point_num = point_num*1.0 / len(points_list)
print(f'max_points{
max_points} min_points{
min_points} average_points{
point_num}')
- 输出
total points 2020
max_points84 min_points0 average_points39.36584158415842
- 统计数据
data_dis = [num.shape[0] for num in points_list]
plt.figure(figsize=(10,5))
plt.bar(range(len(data_dis)), data_dis)

- 总结:
- 如上图所示的逐帧,逐传感器的统计数据中,各传感器分布:radar_front的数据密度较高,高于平均值
- radar_back的后置雷达数据密度较高,甚至出现某帧0个反射点
- 整体分布不均匀,且存在多帧反射点为0的现象
边栏推荐
- [paper reading | deep reading] anrl: attributed network representation learning via deep neural networks
- dotConnect for DB2数据提供者
- 猿桌派第三季开播在即,打开出海浪潮下的开发者新视野
- postgresql之整體查詢大致過程
- The last line of defense of cloud primary mixing department: node waterline design
- 1个月增长900w+播放!总结B站顶流恰饭的2个新趋势
- 豆瓣平均 9.x,分布式领域的 5 本神书!
- STM32项目 -- 选题分享(部分)
- AWS学习笔记(一)
- C#/VB.NET 删除Word文档中的水印
猜你喜欢

Google Earth Engine(GEE)——Landsat 全球土地调查 1975年数据集

3--新唐nuc980 kernel支持jffs2, Jffs2文件系统制作, 内核挂载jffs2, uboot网口设置,uboot支持tftp

Introduction to FLIR blackfly s industrial camera

Integerset of PostgreSQL

AWS学习笔记(一)

Decryption function calculates "task state and lifecycle management" of asynchronous task capability

本周 火火火火 的开源项目!

猿桌派第三季开播在即,打开出海浪潮下的开发者新视野

【论文阅读|深读】RolNE: Improving the Quality of Network Embedding with Structural Role Proximity

一文读懂Faster RCNN
随机推荐
新一代云原生消息队列(一)
猿桌派第三季开播在即,打开出海浪潮下的开发者新视野
Here comes a white paper to uncover the technology behind Clickhouse, a node with 10000 bytes!
Real project, realized by wechat applet opening code (end)
数论 --- 快速幂、快速幂求逆元
15million employees are easy to manage, and the cloud native database gaussdb makes HR office more efficient
写作系列之contribution
This week's hot open source project!
【森城市】GIS数据漫谈(二)
牛客编程题--必刷101之双指针篇
MetaForce原力元宇宙开发搭建丨佛萨奇2.0系统开发
纽约大学 CITIES 研究中心招聘理学硕士和博士后
Halcon instance to opencvsharp (C openCV) implementation -- bottle mouth defect detection (with source code)
MySQL
[C # notes] use file stream to copy files
数字滚动增加效果
[server data recovery] data recovery case of a Dell server crash caused by raid damage
STM32 project -- Topic sharing (part)
Recommended collection!! Which is the best flutter status management plug-in? Please look at the ranking list of yard farmers on the island!
Linear list --- circular linked list