Research Papers 论文研究 23h ago Updated 20h ago 更新于 20小时前 43

Repairing Shape-Prior Shortcuts in Long-Range Single-Shot Fringe Projection Profilometry 修复长距离单帧条纹投影轮廓术中形状先验捷径

Direct depth regression in single-shot fringe projection profilometry (FPP) networks suffers from "shape-prior shortcuts," where models learn to predict depth from object boundaries rather than actual fringe phase information. The proposed PhiCalNet architecture forces the network to output a wrapped-phase representation ($\sin\phi, \cos\phi$) and maps it to depth via a fixed, differentiable calibration layer, effectively removing the shortcut architecturally. PhiCalNet achieves a 3.3x reduction 指出单帧条纹投影轮廓术(FPP)网络常利用“形状先验捷径”从物体边界而非条纹相位恢复深度,导致性能瓶颈。 提出PhiCalNet架构,通过输出包裹相位表示$(\sin\phi, \cos\phi)$并经由固定可微校准层映射到深度,从结构上消除捷径依赖。 引入条纹序作为辅助输入以解决单帧映射非单射问题,并通过敏感性分析证明其对解码误差具有鲁棒性。 在合成基准测试中,PhiCalNet将平均绝对误差(MAE)降低3.3倍至4.46 mm,残差主要集中在$\pm\pi$包裹不连续处。 首次为FPP应用像素级共形不确定性量化,通过拒绝顶部5%的异常像素,使均方根误差降低64%。

55
Hot 热度
72
Quality 质量
60
Impact 影响力

Analysis 深度分析

TL;DR

  • Direct depth regression in single-shot fringe projection profilometry (FPP) networks suffers from "shape-prior shortcuts," where models learn to predict depth from object boundaries rather than actual fringe phase information.
  • The proposed PhiCalNet architecture forces the network to output a wrapped-phase representation ($\sin\phi, \cos\phi$) and maps it to depth via a fixed, differentiable calibration layer, effectively removing the shortcut architecturally.
  • PhiCalNet achieves a 3.3x reduction in Mean Absolute Error (MAE) compared to UNet baselines, lowering error from 14.54 mm to 4.46 mm on a synthetic benchmark.
  • The study introduces pixel-wise conformal uncertainty quantification for FPP, demonstrating that rejecting high-uncertainty pixels at phase discontinuities significantly improves accuracy.

Why It Matters

This research addresses a fundamental failure mode in deep learning-based 3D sensing, showing that increasing model capacity or data volume does not solve shortcut learning if the hypothesis space allows it. By enforcing physical constraints through architecture design rather than loss penalties, it offers a robust path for deploying reliable single-shot profilometry systems in industrial inspection and robotics.

Technical Details

  • Problem Identification: Standard UNet baselines plateau at 14.54 mm MAE because they exploit shape priors (object boundaries) instead of fringe phase, a limitation unaddressed by scaling data or parameters.
  • PhiCalNet Architecture: The model outputs wrapped phase components $(\sin\phi, \cos\phi)$ and uses a fixed differentiable calibration layer to convert phase to depth, ensuring the solution space adheres to physical optics principles.
  • Auxiliary Inputs: To handle the non-injective nature of single-shot mapping, the fringe order is provided as an auxiliary input; sensitivity analysis confirms the model tolerates realistic decoding errors in this parameter.
  • Performance Metrics: PhiCalNet reduces object MAE to 4.46 mm (a 3.3x improvement). A three-frame extension further reduces error to 1.16 mm. Residual errors are confined to 0.103% of pixels at $\pm\pi$ wrap discontinuities.
  • Uncertainty Quantification: The first application of pixel-wise conformal uncertainty quantification in FPP allows for error localization; rejecting the top 5% of uncertain pixels cuts RMSE by 64%, compared to only 3.5% for the baseline.

Industry Insight

  • Architectural Inductive Biases: For physics-based vision tasks, embedding physical laws directly into the network architecture (via differentiable layers) is more effective than relying solely on data-driven optimization or soft loss penalties.
  • Reliability in Single-Shot Systems: Single-shot methods are vulnerable to ambiguity; combining them with rigorous uncertainty estimation enables selective rejection of low-confidence predictions, crucial for safety-critical applications.
  • Benchmarking Limitations: Standard metrics may mask shortcut learning; interpretability tools and uncertainty quantification are necessary to verify that models are actually solving the intended physical problem rather than exploiting visual correlations.

TL;DR

  • 指出单帧条纹投影轮廓术(FPP)网络常利用“形状先验捷径”从物体边界而非条纹相位恢复深度,导致性能瓶颈。
  • 提出PhiCalNet架构,通过输出包裹相位表示$(\sin\phi, \cos\phi)$并经由固定可微校准层映射到深度,从结构上消除捷径依赖。
  • 引入条纹序作为辅助输入以解决单帧映射非单射问题,并通过敏感性分析证明其对解码误差具有鲁棒性。
  • 在合成基准测试中,PhiCalNet将平均绝对误差(MAE)降低3.3倍至4.46 mm,残差主要集中在$\pm\pi$包裹不连续处。
  • 首次为FPP应用像素级共形不确定性量化,通过拒绝顶部5%的异常像素,使均方根误差降低64%。

为什么值得看

本文揭示了深度学习在物理感知任务中容易陷入“捷径学习”的根本原因,即模型倾向于使用简单的几何线索而非复杂的物理信号。提出的PhiCalNet架构提供了一种将物理约束硬编码到神经网络中的有效范式,证明了结构设计比单纯增加数据或损失函数惩罚更能从根本上解决问题。

技术解析

  • 问题诊断:传统的UNet基线模型在15,600张合成图像的数据集上,即使增加数据量和模型容量,MAE仍停滞在14.54 mm,因为优化器搜索的假设空间允许其利用物体边界作为深度的代理特征。
  • PhiCalNet架构:该网络不再直接回归深度,而是输出包裹相位的正弦和余弦值,随后通过一个固定的、可微分的校准层将其转换为深度图。这种设计强制网络学习真实的相位信息,而非形状先验。
  • 辅助输入与鲁棒性:由于单帧映射在没有条纹序的情况下是非单射的,PhiCalNet将条纹序作为辅助输入。敏感性分析显示,即使条纹序存在真实的解码误差,模型性能依然保持稳定。
  • 对比实验:与具有相同物理约束但仅作为软惩罚项的物理信息神经网络(PINN)相比,PhiCalNet取得了显著增益,隔离出架构选择是性能提升的关键因素。
  • 不确定性量化:引入了像素级共形不确定性量化方法,发现误差高度集中在相位包裹的不连续点。通过快照不一致性拒绝前5%的高不确定性像素,可将RMSE大幅降低64%,而基线模型仅降低3.5%。

行业启示

  • 物理先验的结构化嵌入:在科学机器学习领域,将物理定律或约束直接嵌入网络架构(如通过固定校准层),比依赖数据增强或损失函数正则化更能有效防止模型走捷径,提高泛化能力和可解释性。
  • 关注模型失效的特定区域:通过不确定性量化定位模型失败的具体位置(如相位不连续处),可以为算法优化提供精确方向,例如针对这些区域进行专门的数据增强或后处理,从而显著提升整体精度。
  • 评估指标的多维化:除了常规的MAE/RMSE,引入不确定性估计和可解释性分析对于评估物理感知模型的可靠性至关重要,特别是在安全敏感的应用场景中,能够识别并处理高置信度错误的区域。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Research 科学研究 Benchmark 基准测试 Dataset 数据集