onsemi Hyperlux + NODAR 3D感知:AutoSens 2026前的ADAS成像技术全景

背景

onsemi宣布参加2026年9月22-24日巴塞罗那AutoSens Europe 2026,展示最新ADAS成像创新。同时,onsemi与NODAR联合发布3D感知路线图,将立体视觉技术从汽车扩展到工业安全和农业领域。

onsemi Hyperlux 传感器家族

型号 分辨率 像素尺寸 特性 应用
AR0823AT 8MP 1.7μm eHDR/双输出/ASIL-C ADAS前视
AR0430 4MP 2.0μm 低功耗(<8mW)/深度感知 DMS/OMS
AR0341AT 3MP 3.0μm ASIL-C/低光 环视/座舱
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# onsemi Hyperlux 传感器选型
class HyperluxSelector:
"""Hyperlux传感器选型决策"""

def __init__(self):
self.sensors = {
"AR0823AT": {
"resolution": "3840×2160 (8MP)",
"pixel_size": "1.7μm",
"hdr": "120dB eHDR",
"fps": 60,
"power": "450mW",
"asil": "ASIL-C",
"dual_output": True,
"best_for": ["前视ADAS", "远距检测"],
},
"AR0430": {
"resolution": "2048×2048 (4MP)",
"pixel_size": "2.0μm",
"hdr": "120dB",
"fps": 90,
"power": "<8mW (monitoring mode)",
"asil": "ASIL-B",
"dual_output": False,
"best_for": ["DMS", "OMS", "低功耗座舱"],
},
"AR0341AT": {
"resolution": "1920×1080 (3MP)",
"pixel_size": "3.0μm",
"hdr": "120dB",
"fps": 60,
"power": "200mW",
"asil": "ASIL-B+",
"dual_output": False,
"best_for": ["环视", "座舱广角"],
},
}

def recommend_for_dms(self):
"""DMS推荐"""
return self.sensors["AR0430"] # 低功耗+高帧率+ASIL-B

def recommend_for_oms(self):
"""OMS推荐"""
return self.sensors["AR0341AT"] # 大像素+低光+广角

NODAR 立体视觉3D感知

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
26
27
28
29
30
31
32
# NODAR + onsemi 3D感知架构
class NODARStereoVision:
"""
NODAR 立体视觉 + onsemi Hyperlux 传感器

核心技术: 远距离立体视觉3D感知
扩展应用: 汽车/工业安全/农业
"""

def __init__(self):
self.tech_spec = {
"method": "立体视觉 (Stereo Vision)",
"sensors": "2× onsemi Hyperlux 8MP",
"baseline": "可调 (50-200cm)",
"range": "0.5-300m",
"depth_accuracy": "<0.5m @ 100m",
"frame_rate": "30fps @ 8MP",
"processing": "边缘AI (FPGA/SoC)",
}
self.applications = {
"automotive": {
"use_cases": ["前向碰撞预警", "行人检测", "车道保持", "自适应巡航"],
"advantage": "无需LiDAR,成本降低70%+",
},
"industrial_safety": {
"product": "GuardView系统",
"use_cases": ["工厂安全监控", "3D危险区域检测", "人员安全"],
},
"agriculture": {
"use_cases": ["作物3D建模", "自动导航", "障碍检测"],
},
}

DMS/OMS 传感器选型矩阵

应用场景 推荐传感器 关键参数 理由
DMS主摄像头 AR0430 4MP/90fps/8mW 高帧率+低功耗
DMS NIR AR0430 (NIR版) 850nm/940nm 夜视
OMS广角 AR0341AT 3MP/3.0μm/120dB 大像素+低光
前视ADAS AR0823AT 8MP/双输出 高分辨率+双流
环视 AR0341AT 3MP/ASIL-B+ 性价比

AutoSens Europe 2026 议题预览

议题 内容 IMS相关度
Audio/Voice/Conversational 语音+对话界面 🔴 高
Sensing/Perception 传感感知创新 🔴 高
AI/ML/Data 机器学习数据方法 🔴 高
Human Factors/UX/HMI 人因/UX/HMI 🟡 中
Sensor Fusion 传感器融合 🔴 高
OMS/DMS 乘员/驾驶员监控 🔴 核心
Processing/SoC 处理器/架构/芯片 🟡 中

IMS 开发启示

1. 传感器选型决策流程

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
def sensor_selection_pipeline(requirements):
"""传感器选型决策流程"""
# Step 1: 确定应用场景
app = requirements.get("application", "DMS")

# Step 2: 确定关键约束
power_budget = requirements.get("power_mW", 500)
resolution_req = requirements.get("min_resolution_MP", 2)
fps_req = requirements.get("min_fps", 30)
asil_req = requirements.get("asil", "B")

# Step 3: 匹配传感器
candidates = []
for name, spec in HyperluxSelector().sensors.items():
if (spec["resolution"] >= f"{resolution_req}MP" and
spec["fps"] >= fps_req and
spec["asil"] >= asil_req):
candidates.append(name)

return candidates[0] if candidates else "No match"

2. 技术规格对比

参数 onsemi AR0430 Sony IMX390 OmniVision OX03C10
分辨率 4MP 2.4MP 3MP
像素 2.0μm 3.0μm 2.1μm
HDR 120dB 120dB 120dB
功耗 <8mW(监控) 350mW 300mW
ASIL B C B
监控模式

参考


https://dapalm.com/2026/08/29/2026-08-29-onsemi-hyperlux-nodar-3d-sensing-autosens-ims/
作者
Mars
发布于
2026年8月29日
许可协议