EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation
EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation
Section titled “EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation”⚠️ AI 生成 · 建议对照原文 本页为自动整理的学习笔记;关键数据与引用如需引用,请回查 PDF / 官方版本。
学习档位 中文笔记
类型 文献 · 更新 2026-07-19
中文学习笔记(自动生成,需核验)
Section titled “中文学习笔记(自动生成,需核验)”Topic: spatial-perception · Tier: watch · Year: 2023 · Venue: —
Evidence level: partial · 本地全文: 是 · 建议阅读: ~40 分钟
Paper: https://arxiv.org/abs/2304.03369
Code: —
Generator: grok
为什么值得读
Section titled “为什么值得读”针对现代自动驾驶多摄像头环视设置,现有方法要么各相机独立单目估计精度有限,要么用标准自注意力计算昂贵限制特征分辨率与时序利用;本文提出高效引导注意力实现精度-效率最优权衡,并支持更高分辨率特征与更多历史帧,在nuScenes与DDAD上达新SOTA。
EGA-Depth用当前视角作Query、仅相邻有重叠视角堆叠作Key/Value的引导注意力(结合线性投影),高效实现自监督多摄像头深度估计并提升精度。
自监督多摄像头深度估计中,独立单目处理无法充分利用跨视角信息,而标准自注意力对所有视角做二次复杂度计算,既浪费于无重叠视角又限制高分辨率特征与时序帧的使用,导致精度与效率不佳。
自监督单目深度估计(如Zhou et al.与Monodepth2的光度重建、per-pixel min reprojection、automasking);Transformer多头自注意力及线性变体(如Linformer投影);多摄像头环视几何与权重共享编码器-解码器;ResNet等骨干。
- 提出高效引导注意力:每个相机视角以其自身特征为Query,仅与有显著重叠的相邻视角特征(堆叠作Key/Value)做交叉参考,显著降低计算同时保留跨视角信息。
- 基于高效设计可扩展使用更高分辨率视觉特征,并线性扩展纳入先前时间步帧以利用时序相关性,进一步提升深度估计精度。
- 在nuScenes与DDAD两个大规模基准上达到自监督多摄像头深度估计新SOTA,并展现最优精度-效率权衡。
N个相机图像输入共享权重的单ResNet34编码器提取多尺度特征Fi,s;对每个视角i与尺度s,用当前Fi,s生成Query,用相邻视角(及可选历史帧)堆叠特征Hi,s生成Key/Value,经投影后做引导注意力(含norm与skip);注意力后特征Fī,s再经共享权重单解码器输出各相机深度图;训练用标准光度误差平均(含SSIM+L1,min over t’,α=0.85)。
关键模块和设计取舍
Section titled “关键模块和设计取舍”核心是Efficient Guided Attention:Q=Fi,s Wq;K/V来自Hi,s=concat(相邻Fi-1,s等);注意力为softmax(QK̃^T/√c)·Ṽ,复杂度对视角数线性且仅关注有重叠邻居;进一步用Linformer式投影Pk/Pv将K/V降到固定ks维,使对特征长度ns也线性;可选将历史帧特征一并堆入Hi,s(线性增加);设计取舍是牺牲全局全视角两两注意力换取效率与可扩展性(高分+时序),保留关键跨视角参考能力。
数据集、实验设置与指标
Section titled “数据集、实验设置与指标”两个具有挑战性的自动驾驶基准:nuScenes与DDAD。实验为自监督多摄像头深度估计;主要对比精度(如图1的Squared Relative Error)与效率(GFLOPs);分辨率变体有LR/MR/HR特征图送入注意力模块。其他具体指标与设置细节待来源核验。
主要结果(需原文证据)
Section titled “主要结果(需原文证据)”在nuScenes与DDAD上达到自监督多摄像头深度估计新SOTA,并实现最佳精度-效率权衡(优于Monodepth2、Full Surround Monodepth/FSM、SurroundDepth及其作者实现的变体如仅成对自注意力或Linformer替换后的扩展)。具体数值与表格待来源核验。
局限、失败场景与适用边界
Section titled “局限、失败场景与适用边界”提取中未详细讨论失败场景或边界;继承自监督光度损失的常见假设(如静态场景,动态物体需额外处理);仅利用有重叠的邻居与有限历史帧(如t-1),极端无重叠或快速运动场景可能受限。更多局限待来源核验。
与前序 / 同期 / 后续方法的关系
Section titled “与前序 / 同期 / 后续方法的关系”自监督深度:Zhou et al.开创,Monodepth2改进损失与automasking等;多摄像头:FSM(Guizilini et al.)训练时引入时空上下文与pose一致性但测试时仍独立处理;SurroundDepth(Wei et al.)用transformer标准自注意力联合处理多视角但计算昂贵限制分辨率;线性Transformer(Linformer等)启发本文投影降维。本文针对SurroundDepth等计算瓶颈提出更高效引导设计。
官方代码与复现建议
Section titled “官方代码与复现建议”提供的摘录中未提及官方代码仓库或复现细节。建议从arXiv:2304.03369查找作者主页或后续更新;复现时注意共享编码器/解码器、邻居定义、ks投影维、高分特征与历史帧配置,以及标准自监督训练流程。待来源核验。
推荐阅读顺序
Section titled “推荐阅读顺序”先读摘要与Figure 1(精度-效率)及Figure 2(整体架构);再读Introduction贡献列表;接着Method 3.1 Efficient Guided Attention(含Eq.1-4)与3.2高分/时序扩展;然后Related Works;最后实验部分(本摘录未提供,需全文)。
- Q: EGA-Depth的引导注意力中,Query、Key、Value分别来自哪里?为何只选相邻视角? A: Query来自当前视角特征Fi,s;Key/Value来自相邻有显著重叠视角的堆叠特征Hi,s。只选相邻是为了聚焦有意义重叠、避免在无/少重叠视角上浪费计算,使复杂度对视角数线性。
- Q: 如何使注意力对特征图尺寸也近似线性? A: 受Linformer启发,对K和V再做投影Pk、Pv到固定输入无关维度ks,使注意力map变为ns×ks,整体对ns线性。
- Q: 高效设计带来哪两大精度提升途径? A: 1)可使用更高分辨率视觉特征(更多细节);2)可线性扩展纳入先前时间步帧以利用时序相关性(实验中包含t-1帧)。
- Q: 网络元架构是怎样的?训练损失是什么? A: 共享ResNet34编码器提多尺度特征→引导注意力→共享解码器出深度。损失为所有相机视角平均的光度误差(α=0.85的SSIM+L1,min over源帧t’)。
- Q: 与SurroundDepth的主要区别与优势? A: SurroundDepth用所有视角标准自注意力(二次复杂度,限制分辨率);EGA仅邻居引导+线性投影,计算更少、可更高分与时序,精度-效率更优并达SOTA。
- Abstract / page 1: we propose a novel guided attention architecture, EGA-Depth, which can improve both the efficiency and accuracy of self-supervised multi-camera depth estimation. … for each camera, we use its perspective view as the query to cross-reference its neighboring views … This allows the model to perform attention only across views with considerable overlaps and avoid the costly computations of standard self-attention. … EGA-Depth achieves the new state-of-the-art in self-supervised multi-camera depth estimation.
- Figure 1 caption / page 1: Our proposed EGA-Depth achieves the best accuracy-efficiency trade-off when comparing to baseline and latest state-of-the-art methods, including Monodepth2 [17], Full Surround Monodepth (FSM) [23], and SurroundDepth [49].
- Section 3.1 / page 3: for each Fi,s , we only utilize features of the neighboring views with considerable overlaps to compute attention. … Fi,s is used to compute queries and the stacked features of the neighboring views, Hi,s = concat(Fi−1,s , Fi+1,s , …) … are used to compute keys and values. … our proposed guided attention only incurs a linear complexity w.r.t. the number of participating views.
- Section 3.1 / page 4 (Eq.3-4 related): Inspired by the recent work of Linformer [46], we perform further projections to bring the keys and values to a prescribed, input-invariant embedding dimension. … which scales linearly w.r.t. the size of input feature, ns
- Section 3.2 / page 4: we can now utilize features of higher spatial resolutions and incorporate frames from the previous time steps. … for each camera view, we can jointly stack features from previous frames as well as those from neighboring views, for computing keys and values in the attention. … the complexity of computing the attention map increases linearly.
- Main contributions / page 2: • We propose an efficient guided attention scheme for self-supervised multi-camera depth estimation models, where each camera view cross-references its neighboring views. Our design can significantly reduce computation costs while maintaining accuracy. • Based on our efficient guided attention, we can efficiently exploit higher-resolution visual features as well as leverage views from previous time steps, which improves depth estimation accuracy. • Our method acheives state-of-the-art results with optimal accuracy-efficiency trade-off on two large-scale self-supervised multi-camera depth estimation benchmarks, i.e. nuScenes [3] and DDAD [19].
Discovery evidence
Section titled “Discovery evidence”- topic:
spatial-perception - sources:
crossref,arxiv - retrieved_at: 2026-07-20
- query: occupancy prediction autonomous driving
- arxiv:
2304.03369 - doi:
10.1109/cvprw59228.2023.00017 - score_total: 44
- suggested_tier:
watch
Relevance
Section titled “Relevance”(no prose relevance explanation — numeric score only or HTTP source)
Snippets
Section titled “Snippets”(no snippet evidence in candidate pool)
延伸解读与背景补充
Section titled “延伸解读与背景补充”生成:2026-07-21 · 来源条数 2 · 模型
heuristic· 需人工核验数字
围绕「EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation」的核心问题与动机(待结合全文核验)。
方法要点补强
Section titled “方法要点补强”- 见原文方法章节;以下为基于摘要/摘录的要点提示。
- EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera …
与相近工作的关系
Section titled “与相近工作的关系”与相近工作的关系待核验;请对照 related work。
- 勿仅凭摘要推断未给出的数值指标。
- 这篇工作的输入/输出表示是什么?(EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation)
- 训练目标与评测协议各是什么?
- 主要失败模式或局限是什么?
外部解读索引
Section titled “外部解读索引”- [2304.03369] EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation — 2026-07-21 — 官方摘要/二次页面(自动抓取)
- [2304.03369] EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation — 2026-07-21 — 官方摘要/二次页面(自动抓取)
方法结构(重绘)
Section titled “方法结构(重绘)”flowchart LR A["输入 / 观测"] --> B["表示 / 编码"] B --> C["推理 / 解码"] C --> D["输出 / 动作或检测"] %% method sketch for: EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Est方法结构示意(重绘;细节以原论文为准,待 PDF 核验)。
论文摘录图/表
Section titled “论文摘录图/表”
来源:原论文约 p.1(arch);学习用途摘录。

来源:原论文约 p.6(table);学习用途摘录。
英文自动分析(可折叠)
Section titled “英文自动分析(可折叠)”展开英文 Paper Card / AI deep analysis
Paper Card
Section titled “Paper Card”| Field | Content |
|---|---|
| Year | 2023 |
| Authors | Yunxiao Shi, Hong Cai, Amin Ansari, Fatih Porikli |
| arXiv | 2304.03369 |
| DOI | 10.1109/cvprw59228.2023.00017 |
| Topics | spatial-perception, deployment-inference |
| Paper | https://arxiv.org/abs/2304.03369 |
原文摘录与素材(可折叠)
Section titled “原文摘录与素材(可折叠)”展开 Extract / Selections / Local assets
Selections
Section titled “Selections”spatial-perception: tier=watch rank=5 score=44 — auto refresh 2026-07-19 sources=arxiv,crossrefdeployment-inference: tier=watch rank=2 score=51 — cross-topic assign from registry title match=1 keywords; 2026-07-19
Extract excerpt
Section titled “Extract excerpt”EGA-Depth: Efficient Guided Attention for Self-Supervised Multi-Camera Depth Estimation
Yunxiao Shi1 Hong Cai1 Amin Ansari2 Fatih Porikli1 1 Qualcomm AI Research† 2 Qualcomm Technologies, Inc. {yunxshi, hongcai, amina, fporikli}@qti.qualcomm.com
arXiv:2304.03369v1 [cs.CV] 6 Apr 2023 Abstract The ubiquitous multi-camera setup on modern au- tonomous vehicles provides an opportunity to construct surround-view depth. Existing methods, however, either perform independent monocular depth estimations on each camera or rely on computationally heavy self attention mechanisms. In this paper, we propose a novel guided at- tention architecture, EGA-Depth, which can improve both the efficiency and accuracy of self-supervised multi-camera depth estimation. More specifically, for each camera, we use its perspective view as the query to cross-reference its neighboring views to derive informative features for this camera view. This allows the model to perform attention only across views with considerable overlaps and avoid the costly computations of standard self-attention. Given its ef- Figure 1. Accuracy (Squared Relative Error) vs. efficiency ficiency, EGA-Depth enables us to exploit higher-resolution (GFLOPs). Our proposed EGA-Depth achieves the best accuracy- visual features, leading to improved accuracy. Further- efficie