Valeo Interior Radar:60GHz雷达乘员监测系统,满足Euro NCAP与Hot Cars Act

Valeo Interior Radar:60GHz雷达乘员监测系统,满足Euro NCAP与Hot Cars Act

核心价值:车顶安装的60GHz雷达,覆盖两排座椅,实现生命检测、儿童分类、安全带提醒,满足法规要求。

一、产品信息

项目 内容
产品 Interior Radar-Based Occupant Monitoring System
厂商 Valeo
频段 60GHz
天线 2-4Tx / 3-4Rx
覆盖 最多两排座椅
链接 https://www.valeo.com/en/catalogue/cda/interior-radar-based-occupant-monitoring-system/

二、技术规格

2.1 硬件配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class ValeoInteriorRadar:
"""Valeo Interior Radar配置"""

def __init__(self):
self.frequency = "60GHz"
self.antenna_config = {
'tx': [2, 4], # 可配置2或4发射
'rx': [3, 4] # 可配置3或4接收
}
self.coverage = "up_to_2_rows" # 最多覆盖两排
self.position = "cabin_top" # 车顶安装

def get_capabilities(self):
"""获取系统能力"""
return {
'life_detection': True,
'child_classification': True,
'seat_belt_reminder': True,
'airbag_management': True,
'animal_detection': True
}

2.2 检测能力

graph TB
    subgraph Input["输入"]
        Radar[60GHz雷达<br/>点云数据]
    end
    
    subgraph Processing["AI处理"]
        Algorithm[计算机视觉算法<br/>生命检测]
        Classify[乘员分类<br/>婴儿/儿童/成人/动物]
    end
    
    subgraph Output["输出"]
        CPD[儿童存在检测]
        SBR[安全带提醒]
        Airbag[气囊管理]
    end
    
    Radar --> Algorithm
    Algorithm --> Classify
    Classify --> CPD
    Classify --> SBR
    Classify --> Airbag
    
    style Input fill:#e3f2fd
    style Processing fill:#fff3e0
    style Output fill:#e8f5e9

三、核心功能

3.1 生命检测

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class LifeDetection:
"""生命检测"""

def detect_presence(self, radar_point_cloud):
"""
检测生命存在

能力:
- 检测呼吸微动
- 检测心跳微动
- 穿透遮挡(毯子等)
"""
# 分析点云中的微动信号
micromovement = self._analyze_micromovement(radar_point_cloud)

if micromovement['breathing_detected'] or micromovement['heartbeat_detected']:
return {
'life_detected': True,
'type': micromovement['classification'],
'confidence': micromovement['confidence']
}

return {'life_detected': False}

3.2 儿童分类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class OccupantClassification:
"""乘员分类"""

def classify_occupant(self, radar_data):
"""
分类乘员类型

分类:
- 婴儿(0-1岁)
- 儿童(1-6岁)
- 成人
- 动物
"""
# 基于点云尺寸和微动特征
size_estimate = self._estimate_size(radar_data)
movement_pattern = self._analyze_movement(radar_data)

if size_estimate < 0.5: # 小于50cm
return 'infant'
elif size_estimate < 1.2: # 小于1.2m
return 'child'
else:
return 'adult'

3.3 安全带提醒替代

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class SeatBeltReminder:
"""安全带提醒(替代重量传感器)"""

def check_seat_occupancy(self, radar_data, seat_position):
"""
检查座椅占用状态

优势:
- 替代重量传感器
- 更准确的乘员检测
- 支持分类(成人/儿童)
"""
# 检测座椅区域是否有乘员
occupied = self._detect_occupant_in_zone(radar_data, seat_position)

if occupied:
occupant_type = self._classify_occupant(radar_data)

return {
'seat_occupied': True,
'occupant_type': occupant_type,
'belt_reminder_needed': True
}

return {'seat_occupied': False}

四、法规合规

4.1 Euro NCAP合规

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Euro NCAP CPD要求
euro_ncap_requirements = {
"cpd_detection": {
"required": True,
"detection_accuracy": ">90%",
"response_time": "<90s"
},
"seat_belt_reminder": {
"required": True,
"occupant_detection": ">95%"
}
}

# Valeo满足情况
valeo_compliance = {
"euro_ncap": "✅ 满足",
"hot_cars_act": "✅ 满足",
"mass_production": "✅ 已量产"
}

4.2 Hot Cars Act合规

美国Hot Cars法案要求:

  • 检测儿童被遗忘在车内
  • 防止热射病死亡(平均每年39例)
  • 74%受害者为2岁以下幼儿

Valeo解决方案:

  • 雷达检测生命存在
  • 智能手机报警推送
  • 覆盖所有座椅位置

五、安装与集成

5.1 安装位置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class InstallationConfig:
"""安装配置"""

def get_position(self):
"""
推荐安装位置

位置:车顶中部
覆盖:前排+后排(两排)
角度:俯视座舱
"""
return {
'position': 'ceiling_center',
'orientation': 'downward',
'coverage': ['front_row', 'rear_row'],
'fov': '120°'
}

5.2 系统集成

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class ValeoSystemIntegration:
"""系统集成"""

def integrate_to_vehicle(self):
"""
车辆集成方案

组件:
1. 60GHz雷达传感器
2. ECU处理单元
3. AI算法软件
"""
return {
'sensors': ['radar_module'],
'processor': 'ECU',
'software': 'AI_life_detection',
'interface': 'CAN/LIN'
}

六、技术优势

6.1 与重量传感器对比

能力 重量传感器 Valeo雷达
乘员检测
儿童分类
穿透遮挡
动物检测
非接触式
成本

6.2 关键指标

指标 数值
检测准确率 >95%
分类准确率 >90%
覆盖范围 两排座椅
响应时间 <5s

七、IMS应用建议

7.1 集成方案

1
2
3
4
5
6
7
8
# IMS集成建议
ims_integration = {
"primary_use": "CPD儿童检测",
"secondary_use": "安全带提醒替代",
"position": "车顶中部",
"processor": "集成到现有ECU",
"cost_benefit": "替代重量传感器,成本持平"
}

八、总结

Valeo Interior Radar的三大优势:

维度 优势
法规合规 满足Euro NCAP和Hot Cars Act
技术能力 穿透遮挡+生命检测+分类
量产状态 已量产,成熟可靠

对IMS开发的建议:

  1. 采用Valeo雷达 作为CPD核心传感器
  2. 替代重量传感器 简化系统架构
  3. 满足法规要求 支持Euro NCAP认证

参考文献

  1. Valeo. Interior Radar-Based Occupant Monitoring System. https://www.valeo.com/
  2. Euro NCAP. Child Presence Detection Requirements.
  3. Hot Cars Act. Helping Overcome Trauma for Children Alone in Rear Seats.

发布时间:2026-08-01
关键词:Valeo、60GHz雷达、CPD儿童检测、Euro NCAP、Hot Cars Act、安全带提醒
技术:60GHz雷达(2-4Tx/3-4Rx),AI生命检测算法


Valeo Interior Radar:60GHz雷达乘员监测系统,满足Euro NCAP与Hot Cars Act
https://dapalm.com/2026/08/01/2026-08-01-valeo-interior-radar-60ghz-cpd-euro-ncap-hot-cars-act/
作者
Mars
发布于
2026年8月1日
许可协议