分心检测场景全覆盖:从手机到操作设备

Euro NCAP DSM场景: 8个分心场景检测要求


分心场景清单

场景 描述 检测时限
D-01 视线偏离道路>3秒 3秒
D-02 手持手机接听 3秒
D-03 低头打字 3秒
D-04 调整车载设备 5秒
D-05 长时间偏离 5秒
D-06 操作导航 5秒
D-07 调整空调 5秒
D-08 饮水/进食 视情况

检测算法

1
2
3
4
5
6
7
8
9
10
11
class DistractionDetector:
def detect(self, gaze, hands, objects):
# 视线偏离检测
if gaze.off_road_duration > 3.0:
return {'type': 'visual_distraction', 'level': 1}

# 手机检测
if hands.holding_phone:
return {'type': 'phone_usage', 'level': 2}

return {'type': 'normal'}

关键词: 分心检测, 手机使用, Euro NCAP

发布时间: 2026-07-22


分心检测场景全覆盖:从手机到操作设备
https://dapalm.com/2026/07/22/2026-07-22-distraction-detection-scenarios/
作者
Mars
发布于
2026年7月22日
许可协议