SceneDINO
Jevtić 2025 · Paper
One-line summary — SceneDINO lifts self-supervised 2D DINO features into a feed-forward 3D feature field, predicting geometry and expressive 3D features from a single image and distilling them into the first fully unsupervised semantic scene completion (SSC) system — no semantic or geometric ground truth of any kind.
Problem
Semantic scene completion asks a model to infer both the 3D geometry and the semantics of a scene from a single image — including occluded, never-observed regions. Prior SSC methods rely on expensive ground-truth 3D voxel labels and often extra LiDAR supervision; even “label-free” variants like GaussTR lean on heavily supervised foundation models (SAM, Metric3Dv2). SceneDINO is the first approach to SSC in a fully unsupervised setting: training uses only unlabeled multi-view images with self-supervision, and inference uses a single RGB image.
Method & architecture
The pipeline extends Behind the Scenes (BTS) with a feature head, then adds a 3D distillation stage:
- Feed-forward feature field. A 2D encoder-decoder (DINO ViT-B/8 backbone + dense prediction decoder) maps the input image to a per-pixel embedding . For a 3D point , projected to pixel at camera distance , a two-layer MLP predicts density and a -dim DINO-like feature: where is bilinearly interpolated at and is a positional encoding.
- Volume rendering of features and depth. Sampling points along each ray with spacing , visibility follows standard volume rendering, and , giving rendered feature and depth
- Multi-view self-supervised training. Views are split into source/target sets; targets are reconstructed from sources. The loss combines a photometric term (color sampled from other views as in BTS), edge-aware depth smoothness , a feature reconstruction term against 2D DINO features , where is a feature downsampler and a learned constant decomposition compensating ViT positional-encoding artifacts, plus feature smoothness ; the total is .
- 3D feature distillation. A point-wise head maps to a low-dim code (), trained with STEGO’s contrastive correlation loss on feature-similarity matrices (input space) and (distilled space): summed over self, kNN, and random pairs. Feature batches are sampled in 3D: depth-stratified surface center points, neighbors within m, keeping only samples with density .
- Unsupervised probing. Mini-batch cosine k-means clusters the distilled space; gives pseudo-classes, aligned to ground truth via Hungarian matching only for evaluation. Training takes ~2 days on a single V100; camera poses can come from unsupervised ORB-SLAM3.
Results
On SSCBench-KITTI-360 (ranges 12.8/25.6/51.2 m, Hungarian-matched mIoU in %):
| Method | 12.8 m | 25.6 m | 51.2 m |
|---|---|---|---|
| S4C + STEGO (unsup. baseline) | 10.53 | 9.26 | 6.60 |
| SceneDINO (unsupervised) | 10.76 | 10.01 | 8.00 |
| S4C (2D-supervised reference) | 16.94 | 13.94 | 10.19 |
Geometric IoU is 49.54/42.27/37.60 vs 54.64/45.57/39.35 for supervised S4C. In 2D unsupervised segmentation on KITTI-360, SceneDINO reaches 77.74 Acc / 25.81 mIoU, beating STEGO with DINO features (73.32/23.57) and U2Seg (72.89/23.43). Linear probing the distilled features (DINOv2 targets) yields 15.85/13.70/10.57 mIoU — closing the gap to fully supervised S4C and slightly surpassing it at 51.2 m. Using ORB-SLAM3-estimated poses instead of dataset poses costs only 0.12 mIoU; switching DINO→DINOv2 targets gains +1.08 mIoU. Domain generalization to Cityscapes/BDD100K and multi-view feature consistency (vs DINO, DINOv2, FiT3D) are also state of the art.
Why it matters for SLAM
SLAM maps are hollow where the sensor has not looked; scene completion fills that gap with learned structural priors, which directly benefits exploration, path planning, and safe navigation in partially observed environments. SceneDINO exemplifies the Spatial AI trend of this level — reuse self-supervised foundation-model features to get open-world 3D understanding without 3D annotations — and its pipeline is literally SLAM-compatible: the authors show training works with ORB-SLAM3 poses at negligible cost, keeping the whole stack unsupervised.