DAITS
收藏资源简介:
DAITS(Driver Attention Prediction Dataset)是一个用于驾驶员注意力预测的数据集,源自论文《A Novel Dataset and Model for Driver Attention Prediction in Interactive Dynamic Traffic》。该数据集采集于交互式和动态交通场景,旨在支持对复杂交通交互中驾驶员注意力分配机制的研究。数据集内容全面且多模态,包含:1)分辨率为3840x1080的前视驾驶场景RGB图像和视频(10fps);2)驾驶员注视点标注(来自多个标注源及融合结果);3)用于密集监督的灰度注视图和注意力图(分辨率3840x1080),并提供MATLAB矩阵文件;4)融合的LiDAR点云(PCD格式);5)自车运动状态(一个包含位置、四元数朝向、线速度、线加速度、角速度的16维向量)及高级操纵类别标签(如直线行驶、加速、减速、左转、右转、变道、停车);6)一个结构化的SQLite元数据库,包含场景、相机、LiDAR、自车位姿、目标轨迹、交通灯状态和场景标签等表格,用于对齐多源数据。数据集按驾驶序列组织,并提供了官方的序列级划分文件(train+val.txt, test.txt),以确保同一序列的数据不会同时出现在训练集和测试集中。该数据集采用CC BY-NC 4.0许可证,仅限非商业研究和教育用途。
DAITS (Driver Attention Prediction Dataset) is a dataset for driver attention prediction, originating from the paper "A Novel Dataset and Model for Driver Attention Prediction in Interactive Dynamic Traffic". Collected in interactive and dynamic traffic scenarios, this dataset is intended to support research on the driver attention allocation mechanism in complex traffic interactions. The dataset is comprehensive and multimodal, including the following components: 1) Front-view driving scene RGB images and videos (10 fps) with a resolution of 3840×1080; 2) Driver gaze point annotations from multiple annotation sources and their fusion results; 3) Grayscale gaze maps and attention maps for dense supervision (3840×1080 resolution), with accompanying MATLAB matrix files; 4) Fused LiDAR point clouds in PCD format; 5) Ego-vehicle motion states (a 16-dimensional vector containing position, quaternion orientation, linear velocity, linear acceleration and angular velocity) and high-level maneuver category labels such as straight driving, acceleration, deceleration, left turn, right turn, lane change and parking; 6) A structured SQLite metadata database containing tables for scenarios, cameras, LiDAR, ego-vehicle poses, target trajectories, traffic light states and scenario tags, used to align multi-source data. The dataset is organized by driving sequences, and official sequence-level split files (train+val.txt, test.txt) are provided to ensure that data from the same sequence does not appear in both the training and test sets simultaneously. This dataset is released under the CC BY-NC 4.0 license, and is only permitted for non-commercial research and educational purposes.
数据集简介
DAITS (Driver Attention in Interactive Traffic Scenarios) 是一个面向交互动态交通场景的驾驶员注意力预测数据集,源自论文 A Novel Dataset and Model for Driver Attention Prediction in Interactive Dynamic Traffic。该数据集受 NuPlan 格式启发,提供了同步的驾驶场景图像、驾驶员注视标注、注视图、注意力图、点云、自车运动信息、操作标签以及结构化的数据库元数据。
数据集概览
- 下载地址: DAITS
- 设计目标: 支持复杂交通交互中驾驶员注意力分配的研究。
- 样本序列: 示例序列
demo_dataset包含以下内容:- 前视驾驶图像与视频
- 驾驶员注视点标注
- 注视图与密集注意力图
- 合并后的 LiDAR 点云
- 自车运动状态与操作类别
- SQLite 数据库(含场景、相机、LiDAR、自车位姿、轨迹、交通灯及场景元数据)
- MATLAB 矩阵文件(用于像素级注意力监督)
数据划分
DAITS 需使用官方提供的序列级划分文件进行分割,不要随机分割帧,以确保同一驾驶序列的数据不会同时出现在训练集和测试集中。
- 训练+验证集:
train+val.txt,包含训练子集的序列名称。 - 测试集:
test.txt,包含保留测试子集的序列名称。 - 格式: 每行一个序列名称(例如
boston-1,pittsburgh-2,singapore-4,vegas-0),对应数据集中同名的序列文件夹。
数据结构详情
图像与视频
- image: RGB 驾驶场景图像,分辨率
3840 x 1080。 - 视频文件(如
2021.09.15.12.32.43_veh-28_00708_00866-0.avi): 驾驶场景视频,分辨率3840 x 1080,帧率10 fps,编码格式 Motion JPEG。 - video_files.json: 描述视频序列帧范围的元数据,存储首帧和末帧的文件名。
注视点
- 存储于
gaze_point目录,JSON 格式:0_gaze_point.json至6_gaze_point.json: 来自不同标注者或源的注视标注。combone_gaze_point.json: 多个源的合并注视标注。
注视图与注意力图
- fixation: 灰度注视图,分辨率
3840 x 1080。 - map: 灰度注意力图或显著性图,分辨率
3840 x 1080。 - mat: MATLAB v5 文件,包含
mat_data,形状(1080, 3840),数据类型uint8,可作为驾驶员注意力预测的密集监督目标。
点云
- MergedPointCloud: 合并后的点云,存储为 PCD v0.7 格式。
运动与操作标签
- 存储于
label文件,JSON 格式,包含:- motion: 16 维向量,描述自车状态:
0:3: 位置(x, y, z)3:7: 朝向四元数(qx, qy, qz, qw)7:10: 线速度(vx, vy, vz)10:13: 线加速度(ax, ay, az)13:16: 角速度(wx, wy, wz)
- maneuver category: 高层次驾驶行为标签,例如:
- Straight-line Driving
- Straight-line Acceleration
- Straight-line Deceleration
- Left Turn
- Right Turn
- Lane Change
- Stopping
- motion: 16 维向量,描述自车状态:
SQLite 元数据
.db文件为 SQLite 数据库,包含结构化场景元数据,示例数据库包括以下表:- camera
- category
- ego_pose
- image
- lidar
- lidar_box
- lidar_pc
- log
- scenario_tag
- scene
- track
- traffic_light_status
- 用于对齐相机帧、LiDAR 帧、自车位姿、目标轨迹、交通灯状态和场景标签。
许可协议
DAITS 数据集采用 CC BY-NC 4.0 许可证,仅限非商业研究与教育用途。未经作者明确许可,禁止商业使用。
引用信息
若在研究中使用了 DAITS,请引用以下论文:
@article{heNovelDatasetModel2026, title = {A Novel Dataset and Model for Driver Attention Prediction in Interactive Dynamic Traffic}, author = {He, Zhenhao and Li, Qian and Nie, Linzhen and Yin, Zhishuai}, year = {2026}, month = aug, journal = {Expert Systems with Applications}, volume = {323}, pages = {132493}, issn = {0957-4174}, doi = {10.1016/j.eswa.2026.132493} }




