当前位置:网站首页>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的现象
边栏推荐
- Detailed explanation of line segment tree (including tested code implementation)
- leetcode:5. Longest palindrome substring [DP + holding the tail of timeout]
- postgresql之整体查询大致过程
- Stm32f4 --- PWM output
- Application analysis of face recognition
- MATLB|具有储能的经济调度及机会约束和鲁棒优化
- 如何设计好接口测试用例?教你几个小技巧,轻松稿定
- MySQL
- C#/VB. Net to delete watermarks in word documents
- CDB PDB 用户权限管理
猜你喜欢

postgresql之整体查询大致过程

The last line of defense of cloud primary mixing department: node waterline design

MySQL --- 常用函数 - 字符串函数

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

一文读懂Faster RCNN

低代码平台中的数据连接方式(上)

Integerset of PostgreSQL
![[unity] upgraded version · Excel data analysis, automatically create corresponding C classes, automatically create scriptableobject generation classes, and automatically serialize asset files](/img/20/f7fc2204ca165dcea4af25cb054e9b.png)
[unity] upgraded version · Excel data analysis, automatically create corresponding C classes, automatically create scriptableobject generation classes, and automatically serialize asset files

数论 --- 快速幂、快速幂求逆元

【论文阅读|深读】DNGR:Deep Neural Networks for Learning Graph Representations
随机推荐
This week's hot open source project!
如何从0到1构建32Core树莓派集群
Difference and the difference between array and array structure and linked list
[paper reading | deep reading] dngr:deep neural networks for learning graph representations
B站6月榜单丨飞瓜数据UP主成长排行榜(哔哩哔哩平台)发布!
The boss is quarantined
unity中跟随鼠标浮动的面板,并可以自适应文字内容的大小
[unity notes] screen coordinates to ugui coordinates
Use of pgpool II and pgpooladmin
新一代云原生消息队列(一)
Gee upgrade can realize one piece of run tasks
wzoi 1~200
AWS学习笔记(一)
Compress JS code with terser
1--新唐nuc980 NUC980移植 UBOOT,从外部mx25l启动
[paper reading | deep reading] rolne: improving the quality of network embedding with structural role proximity
Introduction to the internal structure of the data directory of PostgreSQL
Go swagger use
Stm32f4 --- PWM output
leetcode:5. Longest palindrome substring [DP + holding the tail of timeout]