本文系统研究了几何感知语义特征(visual-geometry features,如 VGGT)与纯视觉语义特征(visual-only features,如 DINOv2/DINOv3)在蒸馏辐射场中的表现差异,针对机器人应用中的三个关键下游任务展开对比分析,并提出了无需初始猜测即可完成辐射场反演的新框架 SPINE。This paper systematically studies how geometry-grounded semantic features (visual-geometry features such as VGGT) and visual-only semantic features (visual-only features such as DINOv2/DINOv3) differ in distilled radiance fields, comparing them on three key downstream tasks in robotic applications, and proposes SPINE, a new framework that performs radiance field inversion without any initial guess.
将大型视觉基础模型的语义特征蒸馏到辐射场(NeRF / Gaussian Splatting)中,已成为语言条件机器人操控与导航的重要基础。既有方法主要使用 CLIP、DINOv2 等纯视觉特征,而近期提出的 VGGT(Visual Geometry Grounded Transformer)则通过 3D 重建任务目标训练,获得了几何感知语义特征。直觉上,视觉-几何特征对位姿估计等空间任务应更有优势——但事实真是如此吗?Distilling the semantic features of large visual foundation models into radiance fields (NeRF / Gaussian Splatting) has become an important foundation for language-conditioned robotic manipulation and navigation. Existing methods mainly use visual-only features such as CLIP and DINOv2, whereas the recently proposed VGGT (Visual Geometry Grounded Transformer) is trained on a 3D reconstruction objective and thereby acquires geometry-grounded semantic features. Intuitively, visual-geometry features should have an edge on spatial tasks such as pose estimation — but is that really the case?
"Do geometry-grounded semantic features offer an edge in distilled fields? … Surprisingly, we find that the pose estimation accuracy decreases with geometry-grounded features."
本文提出了两个核心贡献:① 将 VGGT 视觉-几何特征蒸馏至辐射场的完整流程,② SPINE——一个利用蒸馏语义实现无初始猜测辐射场反演的新框架,由"语义粗反演 + 光度细化"两阶段组成。This paper makes two core contributions: ① a complete pipeline for distilling VGGT visual-geometry features into radiance fields, and ② SPINE — a new framework that leverages distilled semantics for radiance field inversion without an initial guess, composed of two stages: "coarse semantic inversion + photometric refinement".
从 VGGT 的 Depth Head 和 Point Head(分别经深度估计和稠密点云重建训练)中提取语义嵌入,嵌入维度 ds = 128。同时训练 VGGT 语义场 fs 与 CLIP 语言场 fl,二者共享相同的 hashgrid 编码(base semantics),使几何与语言特征关联相同的视觉和几何基底。Semantic embeddings are extracted from VGGT's Depth Head and Point Head (trained for depth estimation and dense point cloud reconstruction respectively), with embedding dimension ds = 128. The VGGT semantic field fs and the CLIP language field fl are trained jointly and share the same hashgrid encoding (base semantics), so that geometric and language features are tied to the same visual and geometric substrate.
训练损失同时包含 Frobenius 范数项和余弦相似度项,以保证数值稳定性:The training loss contains both a Frobenius-norm term and a cosine-similarity term to ensure numerical stability:
L = Lr + Σ‖If,c − Îf,c‖²F − Σ csim(If,c, Îf,c)
粗反演(Coarse Inversion):训练逆向模型 pψ,将语义嵌入(VGGT 使用 camera embedding,DINO 使用 class token)映射至相机位姿的高斯混合模型(GMM)分布,以 Lie 代数 so(3) 参数化旋转,无需初始位姿猜测。Coarse Inversion: an inverse model pψ is trained to map semantic embeddings (the camera embedding for VGGT, the class token for DINO) to a Gaussian mixture model (GMM) distribution over camera poses, parameterizing rotation with the Lie algebra so(3), so that no initial pose guess is required.
细反演(Fine Inversion):以粗估计为起点,通过新视角合成生成 RGB-D 图像,匹配特征点并求解 PnP 问题(使用 RANSAC 提升鲁棒性),最终得到高精度位姿估计。Fine Inversion: starting from the coarse estimate, RGB-D images are generated via novel view synthesis, feature points are matched and a PnP problem is solved (using RANSAC for robustness), finally yielding a high-precision pose estimate.
为定量刻画蒸馏特征的几何内容,作者提出 GFF:先用 Sobel-Feldman 算子对语义图像和 RGB 图像分别提取边缘,再计算语义边缘相对于 RGB 边缘的保留比例:To quantify the geometric content of distilled features, the authors propose GFF: edges are first extracted from the semantic image and the RGB image with a Sobel-Feldman operator, then the proportion of semantic edges retained relative to the RGB edges is computed:
GFF = Σ Ie,sem[i,j,k] / Σ Ie,rgb[i,j,k]
GFF 越高,表示语义特征中保留的场景几何信息越多。The higher the GFF, the more scene geometry is preserved in the semantic features.
在 9 个场景、3 个数据集(LERF、3D-OVS、机器人数据集)上,分别训练 GS 和 NeRF 表示,对比 DINOv2、DINOv3、VGGT 三种语义特征,每场景计算 100 个相机位姿的指标。训练硬件:Nvidia L40 GPU(48GB VRAM);框架:Nerfstudio,迭代次数 30000。On 9 scenes from 3 datasets (LERF, 3D-OVS and a robot dataset), GS and NeRF representations are trained separately and three semantic features — DINOv2, DINOv3 and VGGT — are compared, computing metrics over 100 camera poses per scene. Training hardware: Nvidia L40 GPU (48GB VRAM); framework: Nerfstudio, 30000 iterations.
| 任务Task | 最优方法Best method | DINOv2 | DINOv3 | VGGT |
|---|---|---|---|---|
| 几何保真度(GFF,GS)Geometric fidelity (GFF, GS) | VGGT | 最低Lowest | 中等Medium | 最高Highest |
| 语义目标定位(SSIM/PSNR/LPIPS)Semantic object localization (SSIM/PSNR/LPIPS) | 三者相当All three comparable | 相当Comparable | 相当Comparable | 轻微退化Slight degradation |
| 粗位姿估计(旋转&平移误差)Coarse pose estimation (rotation & translation error) | DINOv2 | 最低误差Lowest error | 中等Medium | 最高误差Highest error |
| 细化后位姿估计Pose estimation after refinement | DINOv2-SPINE | 最高成功率Highest success rate | 中等Medium | 最低成功率Lowest success rate |
论文指出,现有几何感知方案(如 VGGT)采用全监督方法进行空间感知训练,可能引入归纳偏置,削弱特征的通用性,从而导致辐射场反演等任务性能下降。未来工作将探索自监督几何感知方案,以消除归纳偏置、提升适应性并支持更大规模预训练。The paper notes that existing geometry-grounding schemes (such as VGGT) use fully supervised training for spatial perception, which may introduce inductive biases that weaken the generality of the features and thus degrade performance on tasks such as radiance field inversion. Future work will explore self-supervised geometry-grounding schemes in order to remove inductive biases, improve adaptability and support larger-scale pretraining.
实验发现视觉-几何语义虽含有更丰富的结构内容,却未能提升语义目标定位精度,说明几何内容与视觉语义之间缺乏有效协同。未来工作需设计更有效的策略,将几何导向和视觉导向的语义特征融合,以实现更鲁棒的场景理解。The experiments find that although visual-geometry semantics carry richer structural content, they fail to improve semantic object localization accuracy, indicating a lack of effective synergy between geometric content and visual semantics. Future work needs to design more effective strategies for fusing geometry-oriented and vision-oriented semantic features in order to achieve more robust scene understanding.
现有几何感知视觉骨干网络(如 VGGT)相较于无感知骨干网络存在显著的计算开销,且目前尚无轻量级变体,难以用于实时机器人应用(如操控任务)。未来工作将探索高效的空间感知视觉骨干架构。Existing geometry-grounded visual backbones (such as VGGT) carry a significant computational overhead compared with non-grounded backbones, and no lightweight variants exist so far, which makes them hard to use in real-time robotic applications such as manipulation. Future work will explore efficient spatially grounded visual backbone architectures.
SPINE 的细化阶段成功率直接取决于粗位姿估计的误差大小。由于 VGGT 的粗估计精度较低,其细化阶段的成功率也相应更低。这也说明粗反演模型质量对最终位姿精度至关重要。(stated in Section 7.4)The success rate of SPINE's refinement stage depends directly on the magnitude of the error in the coarse pose estimate. Because VGGT's coarse estimates are less accurate, the success rate of its refinement stage is correspondingly lower. This also shows that the quality of the coarse-inversion model is critical to the final pose accuracy. (stated in Section 7.4)