Pith. sign in

REVIEW 4 major objections 4 minor 53 references

Map-Det3D: Metric Feed-Forward 3D Reconstruction Prior for Multi-view 3D Object Detection from Streaming Inputs

T0 review · 4 major / 4 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read Map-Det3D claims that a feed-forward metric reconstruction model can be the geometric backbone of an online detection transformer, decoding metric 3D boxes without depth sensors or 2D-to-3D lifting.

desk verdict A competent systems paper with real gains from repurposing an FF3R backbone into a DETR-style detector, but the zero-shot ScanNet claim needs a pretraining-overlap disclosure before I would call it robust transfer. read the letter →

arxiv 2608.12179 v1 pith:7DKD5ADD submitted 2026-08-12 cs.CV

classification cs.CV
keywords Multi-view3DobjectdetectionFeed-forwardmetricreconstructionMonocularUp-to-scaleboundingboxheadOnlineperceptionZero-shottransferClass-agnostic
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Map-Det3D tries to solve the scale problem in monocular 3D detection by moving detection into a metric 3D space built by a feed-forward reconstruction network. Instead of detecting in 2D and then regressing depth and size, the model decodes bounding boxes in an up-to-scale coordinate system and converts them to meters with a per-window scale factor predicted by the reconstruction backbone. The paper reports that this design reaches 16.9 AP25 on held-out CA-1M scenes, beating the monocular baseline CuTR by 3.4 points, and transfers zero-shot to ScanNet200 with 15.2 AP15 versus CuTR's 4.3. If this holds, it would mean that learned reconstruction priors are a practical source of metric scale for image-only, online object detection.

What carries the argument

The mechanism that carries the argument is the per-window metric scale factor $\rho_t$ produced by the MapAnything backbone together with an up-to-scale 3D bounding-box head. The head predicts all geometric attributes in a scale-free representation, such as up-to-scale center offsets, log-depth, and log-dimensions, and then converts them to metric units using $\rho_t$, so that the network never regresses absolute meters directly. A second load-bearing component is the 16-layer multi-view transformer that fuses features across the temporal window, with the scale token updated jointly; ablations show this is the part whose fine-tuning produces the largest gains, and adding camera intrinsics and poses further stabilizes geometry.

What would settle it

Multiply every camera's focal length in the input metadata by a constant factor (e.g., 1.2) while keeping the images and scene geometry unchanged, and check whether predicted box depths and sizes scale accordingly; if the metric outputs shift with the camera parameters, the scale factor is not a true metric prior.

Watch

Extended reading notes

Core claim

The central discovery is that a metric feed-forward reconstruction model, designed for camera pose and dense geometry, can be repurposed as the encoder of a DETR-style detector and supply the absolute scale that monocular 3D object detection lacks. Map-Det3D feeds a sliding window of frames through MapAnything's multi-view transformer, obtains fused multi-scale features and a scale token, and decodes boxes in an up-to-scale parameterization: center offsets $\tilde{x}, \tilde{y}$, log-depth $\tilde{d}$, and log-dimensions $\tilde{s}_w, \tilde{s}_l, \tilde{s}_h$, then rescales via $x = \rho\tilde{x}$, $y = \rho\tilde{y}$, $z = \rho\exp(\tilde{d})$, $w = \rho\exp(\tilde{s}_w)$, and so on. This factorization keeps geometric reasoning in the well-posed up-to-scale space while the reconstruction prior owns metric scale. The paper's experiments attribute the gains to unfreezing the multi-view transformer, adding temporal context, and camera conditioning, and show the top image-only results on held-out CA-1M and zero-shot ScanNet200 while remaining competitive with online depth-free per-scene methods.

Load-bearing premise

The load-bearing premise is that the per-window scale factor predicted by the reconstruction backbone is metrically correct on scenes the model has never seen, and that fine-tuning the detector does not destroy that calibration.

Editorial extensions

If this is right

  • Depth sensors and 2D-to-3D lifting are not necessary for competitive indoor metric 3D detection: with only RGB video and camera metadata, Map-Det3D reports 16.9 AP25 on held-out CA-1M and outperforms monocular baselines.
  • The same geometric backbone can serve both reconstruction and detection; adapting it with object-aware losses preserves its transfer ability, as shown by zero-shot ScanNet200 results of 15.2 AP15.
  • Temporal windows function as additional views: increasing the window from T=1 to T=5 raises CA-1M AP15 from 14.0 to 21.2, so causal multi-view aggregation is a direct source of geometric evidence.
  • Camera metadata matters: adding intrinsics improves AP15 by 0.8 points and poses by a further 4.7 points in the ablation, so the design can consume whatever geometry information is available.
  • The class-agnostic detector can be combined with simple tracking-by-detection to produce per-scene results on ScanNetV2, reaching 27.6 AP15 without ground-truth depth.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If the scale factor stays calibrated under camera and scene shift, the same recipe should extend to outdoor settings by retraining or swapping the reconstruction backbone; a clean test would be evaluating on a driving dataset with known metric boxes.
  • Compare Map-Det3D against a variant that predicts metric depth with a monocular depth foundation model instead of the reconstruction backbone; this would isolate whether the reconstruction's multi-view fusion or just its scale token is doing the work.
  • Because the boxes are class-agnostic and metric, the output could serve as generic 3D proposals for open-vocabulary detection or segmentation by matching them to text queries through 2D grounding models, an extension the paper names as future work but does not demonstrate.
  • The up-to-scale head could be detached from detection and used as a calibration probe: the distribution of predicted scale factors over windows might flag when the reconstruction prior is operating out of domain, giving a self-diagnostic for deployment.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 4 minor

Summary. The paper proposes Map-Det3D, an online multi-view 3D object detection framework that repurposes a feed-forward metric 3D reconstruction model (MapAnything) as the encoder of a DETR-style detection transformer. A short temporal window of RGB frames is treated as multi-view input, and an up-to-scale 3D bounding box head recovers metric coordinates and dimensions by multiplying the backbone's predicted per-window scale factor. The method is trained class-agnostically on CA-1M and evaluated on held-out CA-1M scenes, zero-shot on ScanNet200, and per-scene on ScanNetV2 with a simple tracking-by-detection module. The reported results show improvements over monocular baselines such as CuTR and Cube R-CNN, and competitive zero-shot performance on ScanNet.

Significance. If the results hold, this is a valuable architectural insight: rather than regressing depth or scale from 2D detections, a feed-forward reconstruction model's learned scale prior can be directly converted into metric 3D boxes. The ablations in Tab. 1 provide controlled evidence for the main design decisions (unfreezing the multi-view transformer, camera conditioning, and the direct 3D head), and the release of code and models supports reproducibility. The significance is somewhat tempered by the fact that the method is evaluated only on indoor class-agnostic detection, and by unresolved questions about the zero-shot comparison's control for backbone pretraining data and about the statistical reliability of the single-run results.

major comments (4)
  1. [Sec. 4.4, Tab. 5] The zero-shot ScanNet200 comparison does not disclose the pretraining corpus of the MapAnything backbone, despite the central claim of 'robust transfer without adaptation' (abstract, Sec. 4.4). MapAnything is a same-group model, and common FF3R training mixtures include ScanNet. If ScanNet validation imagery or geometry was part of the reconstruction pretraining, the large gap over CuTR (15.2 vs 4.3 AP15) could reflect encoder-data overlap rather than the proposed online multi-view architecture or scale handling. Please provide the complete list of datasets used in MapAnything's reconstruction pretraining and, if ScanNet is included, assess the impact of overlap (e.g., by reporting results with a backbone variant that was not trained on ScanNet, or by stratifying performance across scenes with different overlap levels).
  2. [Sec. 3.4, Eqs. (3)–(4) and Tab. 5] The metric outputs of the model depend entirely on the predicted scale factor rho (x = rho * x_tilde, z = rho * exp(d_tilde), w = rho * exp(s_w_tilde), etc.). The paper does not directly validate whether rho remains metrically calibrated on the zero-shot benchmark, even though a biased rho would corrupt every metric box regardless of the up-to-scale geometry. Please report the scale factor's accuracy (e.g., median absolute relative error of rho with respect to scene scale) on both CA-1M and ScanNet validation, and, ideally, ablate the downstream detection AP when rho is replaced by an oracle or ground-truth scale factor.
  3. [Sec. 4.3–4.5, Tabs. 1–6] All experimental tables report single-run results without error bars or significance tests. Several decisive comparisons involve modest margins (e.g., 17.2 vs 17.3 in Tab. 1 rows 5 and 7, and 21.1 vs 21.2 in Tab. 3), so the reader cannot judge whether the reported improvements are stable or within run-to-run noise. Please provide at least three independent runs for the main results and report mean and standard deviation, especially for the SOTA comparisons in Tabs. 4 and 5.
  4. [Sec. 4.2, Tabs. 4–5] The evaluation section states that, unlike prior benchmarks, all ground-truth boxes are evaluated regardless of visibility and truncation. If this protocol is applied to Map-Det3D but the baseline numbers in Tabs. 4 and 5 are taken from prior publications that used a different protocol (e.g., only visible boxes), the comparison is not apples-to-apples. Please state explicitly whether all baselines were re-evaluated under the same protocol, and, if so, provide the re-evaluated numbers; otherwise, the SOTA claims in Secs. 4.4 and 4.5 are not properly supported.
minor comments (4)
  1. [Fig. 1 caption] The phrase 'and adapts it for 3D object detection' should read 'and adapts it for 3D object detection' or 'and adapts it for 3D object detection'; the verb form is inconsistent with the rest of the caption.
  2. [Sec. 4.5 vs Sec. 3.1] The symbol T is reused for the temporal window size (Sec. 3.1) and for the track memory in the per-scene evaluation (Sec. 4.5). Please rename one of these to avoid confusion.
  3. [Sec. 4.3, Tab. 1] The row configuration in Tab. 1 is not fully self-explanatory; for example, row 4 has checkmarks for 'Unfreeze Scale Head' and 'Unfreeze MV Transformer' but no 'Multi-View' checkbox, which may make the incremental contribution hard to parse. Consider adding a short textual description of each configuration or explicitly labeling the row conditions.
  4. [References] The method relies heavily on reference [11] (MapAnything), which appears to be a same-group publication. Please confirm that this work is publicly available or accepted, since the paper's reproducibility depends on the released checkpoints.

Circularity Check

0 steps flagged · score 2.0 of 10

No circular derivation: the scale factor is a learned backbone output, the up-to-scale head is a parameterization, and in-domain/zero-shot results are externally benchmarked; only a same-group self-citation/data-disclosure burden remains.

full rationale

Map-Det3D's claims do not reduce to their inputs. The metric scale factor ρ_t is produced by the MapAnything backbone (Eq. 1) and, after fine-tuning with detection losses on CA-1M, is used to convert up-to-scale head outputs via x := ρ x̃, y := ρ ỹ, z := ρ exp(d̃), w := ρ exp(s_w̃) (Sec. 3.4). Nothing in these equations fits ρ to the reported AP numbers: ρ is a learned output, not a constant calibrated on CA-1M validation or ScanNet. In-domain numbers are on held-out CA-1M scenes (Tab. 4) and transfer numbers are on ScanNet200/ScanNetV2 (Tabs. 5-6), so the main claims are externally falsifiable rather than definitional. The only burden is self-citational: the geometric backbone MapAnything [11] shares authors with the present paper, and Sec. 3.2 does not disclose MapAnything's reconstruction-pretraining corpus. Therefore the ScanNet zero-shot comparison against CuTR (Sec. 4.4, Tab. 5) does not fully rule out that part of the transfer gain comes from encoder pretraining overlap rather than the proposed architecture or scale handling. That is a missing-control/missing-disclosure concern, not an equation-level circularity: no fitted parameter is renamed a prediction, and no uniqueness or ansatz result is imported from a same-author citation to force the design. Consistently with the default expectation for benchmark-backed papers, the circularity score is low.

Assumptions & free parameters 2 free parameters · 4 assumptions · 0 invented entities

The central claim rests on learned components inherited from MapAnything, especially the per-window scale factor rho_t that converts up-to-scale 3D head outputs to metric boxes. The temporal window size is a hand-chosen hyperparameter that materially affects reported AP. No new physical or mathematical entities are introduced.

free parameters (2)
  • per-window metric scale factor rho_t = predicted by MapAnything, fine-tuned on CA-1M at 1/10 learning rate
    Central to the up-to-scale 3D head: all metric boxes are rho_t times up-to-scale predictions (Sec. 3.4). Calibration on unseen scenes is assumed, not independently verified.
  • temporal window size T = 5 at inference
    Chosen by hand; Table 3 shows AP15 rises from 14.0 (T=1) to 21.2 (T=5) and saturates at higher T, so the central online-performance claim depends on this choice.
assumptions (4)
  • domain assumption MapAnything's feed-forward reconstruction provides reliable multi-view geometry and a disentangled metric scale factor across indoor scenes.
    The detector's geometry and metric outputs inherit the backbone's prior (Sec. 3.2); if MapAnything's scale is biased on ScanNet, the up-to-scale head cannot be metric.
  • domain assumption Camera intrinsics and, when available, extrinsics are encoded and are sufficiently accurate to stabilize geometry; when absent, the backbone's estimated poses are accurate enough.
    Table 1 shows pose conditioning adds 4.7 AP15, so the central result depends on this cue being available or recoverable (Sec. 3.1, Sec. 3.5).
  • domain assumption CA-1M provides exhaustive and accurate class-agnostic 9-DOF 3D annotations for objects in indoor scenes.
    Training and in-domain evaluation use CA-1M with all ground-truth boxes scored regardless of visibility (Sec. 4.2); dataset annotation quality bounds the measured AP.
  • domain assumption Hungarian matching on auxiliary 2D boxes, with disentangled 3D corner losses, is a sufficient training objective for direct 3D box prediction.
    The method relies on this loss design (Sec. 3.6); no analysis of matching failure modes is provided.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Map-Det3D: Metric Feed-Forward 3D Reconstruction Prior for Multi-view 3D Object Detection from Streaming Inputs." pith.science (2026). https://pith.science/paper/7DKD5ADD

@misc{pith2026260812179,
  author       = {Pith},
  title        = {Pith review of: Map-Det3D: Metric Feed-Forward 3D Reconstruction Prior for Multi-view 3D Object Detection from Streaming Inputs},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/7DKD5ADD}},
  note         = {Machine review of arXiv:2608.12179}
}
read the original abstract

Metric 3D object detection is a core capability for embodied agents, yet most reliable systems lean on depth sensors, trading away cost, power, and integration simplicity. This motivates monocular 3D detection, which avoids additional constraints, yet it faces a major obstacle: from a single image, depth, and especially absolute scale, are underconstrained. As a result, the prevailing pattern of detecting in 2D and then predicting 3D attributes is often brittle, since modest range errors can dominate 3D localization, and the learned scale prior can fail when cameras, motion, or environments undergo domain shifts. To address this, we propose Map-Det3D, an online multi-view 3D object detection model that brings detection directly into a 3D space reconstructed from RGB. We map a short temporal window into multiple views and repurpose a feed-forward metric 3D reconstruction model as our geometric backbone while tuning its object-aware capabilities. Building on this representation, Map-Det3D directly predicts boxes in metric 3D space, without the widely used 2D-to-3D lifting. Experiments across different benchmarks show that this design supports strong online performance and robust transfer without adaptation, suggesting that training reconstruction priors for detection is a practical route to stable metric 3D detection from monocular video. Code and models are available at https://royyang0714.github.io/Map-Det3D.

Figures

Figures reproduced from arXiv: 2608.12179 by the authors.

Figure 1
Figure 1. Map-Det3D. We leverage the metric-scale geometry prior from a multi-view feed-forward 3D reconstruction model and adapts it for 3D object detection from images. In particular, given a streaming video input, Map-Det3D can perform online metric-scale 3D reconstruction and 3D object detection simultaneously in the form of feed-forward inference over a sliding window. Map-Det3D can run on videos alone, but camera poses … view at source ↗
Figure 2
Figure 2. Architecture overview. Map-Det3D treats a short temporal window as multi￾view input, repurposes a metric FF3R backbone, i.e. MapAnything, as the encoder of a detection transformer, and decodes up-to-scale 3D boxes that are converted to metric scale via the predicted scale factor. 3 Method Our goal is online 3D object detection in metric scale from streaming RGB, without depth sensors. One of the obstacles is the geo… view at source ↗
Figure 3
Figure 3. Detection Architecture. We repurpose the FF3R as the detection trans￾former [3,50] encoder and project the multi-scale feature maps into a common dimension, then concatenate them to form QIMG. We gradually refine bounding box queries and decode 3D bounding boxes using our proposed up-to-scale 3D bounding box head. quantities (e.g. x = ρt x˜). We focus on the class-agnostic setting to isolate the geometric challenges… view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: The effect of the visible part inside the images. [PITH_FULL_IMAGE:figures/full_fig_p013_4.png]
Figure 5
Figure 5. Figure 5: Qualitative comparison on ScanNet. We qualitatively compare Map-Det3D with, 3D-MOOD [46], DetAny3D [49], and CuTR [16]. We visualize the predicted 3D bounding boxes alongside the ground-truth point cloud to qualitatively assess the accuracy of metric-scale prediction. …
Figure 6
Figure 6. Figure 6: Qualitative Results on ScanNetV2. We visualize the 3D bounding boxes plus depth estimation from Map-Det3D under the zero-shot settings. not put in relation to any closed or open-vocabulary queries. We leave open￾vocabulary as future work to be explored as a natural ext…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

53 extracted references · 32 canonical work pages

  1. [1]

    ICLR (2025)

    Bochkovskii, A., Delaunoy, A., Germain, H., Santos, M., Zhou, Y., Richter, S.R., Koltun, V.: Depth pro: Sharp monocular metric depth in less than a second. ICLR (2025)

  2. [2]

    In: CVPR

    Brazil, G., Kumar, A., Straub, J., Ravi, N., Johnson, J., Gkioxari, G.: Omni3D: A large benchmark and model for 3D object detection in the wild. In: CVPR. IEEE, Vancouver, Canada (June 2023)

  3. [3]

    In: ECCV

    Carion, N., Massa, F., Synnaeve, G., Usunier, N., Kirillov, A., Zagoruyko, S.: End-to-end object detection with transformers. In: ECCV. pp. 213–229. Springer (2020)

  4. [4]

    CVPR (2025)

    Chen, S., Guo, H., Zhu, S., Zhang, F., Huang, Z., Feng, J., Kang, B.: Video depth anything: Consistent depth estimation for super-long videos. CVPR (2025)

  5. [5]

    In: CVPR (2017)

    Dai, A., Chang, A.X., Savva, M., Halber, M., Funkhouser, T., Nießner, M.: Scannet: Richly-annotated 3d reconstructions of indoor scenes. In: CVPR (2017)

  6. [6]

    Duisterhof, B.P., Zust, L., Weinzaepfel, P., Leroy, V., Cabon, Y., Revaud, J.: Mast3r- sfm: a fully-integrated solution for unconstrained structure-from-motion. In: 3DV. pp. 1–10 (2025)

  7. [7]

    In: CORL (2022)

    Fischer, T., Yang, Y.H., Kumar, S., Sun, M., Yu, F.: Cc-3dt: Panoramic 3d object tracking via cross-camera fusion. In: CORL (2022)

  8. [8]

    IEEE TPAMI45(2), 1992–2008 (2022)

    Hu, H.N., Yang, Y.H., Fischer, T., Darrell, T., Yu, F., Sun, M.: Monocular quasi- dense 3d object tracking. IEEE TPAMI45(2), 1992–2008 (2022)

Show all 53 references
  1. [9]

    IEEE TPAMI (2024)

    Hu, M., Yin, W., Zhang, C., Cai, Z., Long, X., Chen, H., Wang, K., Yu, G., Shen, C., Shen, S.: Metric3d v2: A versatile monocular geometric foundation model for zero-shot metric depth and surface normal estimation. IEEE TPAMI (2024)

  2. [10]

    In: NeurIPS (2024)

    Huang, R., Zheng, H., Wang, Y., Xia, Z., Pavone, M., Huang, G.: Training an open-vocabulary monocular 3d detection model without 3d data. In: NeurIPS (2024)

  3. [11]

    Keetha, N., Müller, N., Schönberger, J., Porzi, L., Zhang, Y., Fischer, T., Knapitsch, A., Zauss, D., Weber, E., Antunes, N., Luiten, J., Lopez-Antequera, M., Bulò, S.R., Richardt, C., Ramanan, D., Scherer, S., Kontschieder, P.: MapAnything: Universal feed-forward metric 3D re...

  4. [12]

    In: 2026 International Conference on 3D Vision (3DV) (2026)

    Knaebel, K., Yilmaz, K., de Geus, D., Hermans, A., Adrian, D., Linder, T., Leibe, B.: DINO in the room: Leveraging 2D foundation models for 3D segmentation. In: 2026 International Conference on 3D Vision (3DV) (2026)

  5. [13]

    Naval research logistics quarterly2(1-2), 83–97 (1955)

    Kuhn, H.W.: The hungarian method for the assignment problem. Naval research logistics quarterly2(1-2), 83–97 (1955)

  6. [14]

    In: Proceedings of the IEEE conference on computer vision and pattern recognition

    Kundu, A., Li, Y., Rehg, J.M.: 3d-rcnn: Instance-level 3d object reconstruction via render-and-compare. In: Proceedings of the IEEE conference on computer vision and pattern recognition. pp. 3559–3568 (2018)

  7. [15]

    In: Computer Graphics Forum

    Lan, Y., Zhu, C., Gao, Z., Zhang, J., Cao, Y., Yi, R., Wang, Y., Xu, K.: Boxfusion: Reconstruction-free open-vocabulary 3d object detection via real-time multi-view box fusion. In: Computer Graphics Forum. vol. 44, p. e70254. Wiley Online Library (2025)

  8. [16]

    In: Proceedings of the Computer Vision and Pattern Recognition Conference

    Lazarow, J., Griffiths, D., Kohavi, G., Crespo, F., Dehghan, A.: Cubify anything: Scaling indoor 3d object detection. In: Proceedings of the Computer Vision and Pattern Recognition Conference. pp. 22225–22233 (2025)

  9. [17]

    arXiv preprint arXiv:2203.17270 (2022) Map-Det3D 17

    Li, Z., Wang, W., Li, H., Xie, E., Sima, C., Lu, T., Qiao, Y., Dai, J.: Bevformer: Learning bird’s-eye-view representation from multi-camera images via spatiotempo- ral transformers. arXiv preprint arXiv:2203.17270 (2022) Map-Det3D 17

  10. [18]

    In: CVPR

    Li, Z., Xu, X., Lim, S., Zhao, H.: Unimode: Unified monocular 3d object detection. In: CVPR. pp. 16561–16570 (June 2024)

  11. [19]

    arXiv preprint arXiv:2511.10647 (2025)

    Lin, H., Chen, S., Liew, J.H., Chen, D.Y., Li, Z., Shi, G., Feng, J., Kang, B.: Depth anything 3: Recovering the visual space from any views. arXiv preprint arXiv:2511.10647 (2025)

  12. [20]

    In: ICCV

    Lin, T.Y., Goyal, P., Girshick, R., He, K., Dollár, P.: Focal loss for dense object detection. In: ICCV. pp. 2980–2988 (2017)

  13. [21]

    arXiv preprint arXiv:2211.10581 (2022)

    Lin, X., Lin, T., Pei, Z., Huang, L., Su, Z.: Sparse4d: Multi-view 3d object detection with sparse spatial-temporal fusion. arXiv preprint arXiv:2211.10581 (2022)

  14. [22]

    ECCV (2024)

    Liu, S., Zeng, Z., Ren, T., Li, F., Zhang, H., Yang, J., Li, C., Yang, J., Su, H., Zhu, J., et al.: Grounding dino: Marrying dino with grounded pre-training for open-set object detection. ECCV (2024)

  15. [23]

    arXiv preprint arXiv:2203.05625 (2022)

    Liu, Y., Wang, T., Zhang, X., Sun, J.: Petr: Position embedding transformation for multi-view 3d object detection. arXiv preprint arXiv:2203.05625 (2022)

  16. [24]

    In: NeurIPS (2025)

    Mao, Y., Zhong, J., Fang, C., Zheng, J., Tang, R., Zhu, H., Tan, P., Zhou, Z.: Spatiallm: Training large language models for structured indoor modeling. In: NeurIPS (2025)

  17. [25]

    In: ICIP

    Naiden, A., Paunescu, V., Kim, G., Jeon, B., Leordeanu, M.: Shift r-cnn: Deep monocular 3d object detection with closed-form geometric constraints. In: ICIP. pp. 61–65. IEEE (2019)

  18. [26]

    Nickolls, J., Buck, I., Garland, M., Skadron, K.: Scalable parallel programming with cuda: Is cuda the parallel programming model that application developers have been waiting for? Queue6(2), 40–53 (2008)

  19. [27]

    Park, D., Ambrus, R., Guizilini, V., Li, J., Gaidon, A.: Is pseudo-lidar needed for monocular 3d object detection? In: ICCV (2021)

  20. [28]

    In: NeurIPS, pp

    Paszke, A., Gross, S., Massa, F., Lerer, A., Bradbury, J., Chanan, G., Killeen, T., Lin, Z., Gimelshein, N., Antiga, L., Desmaison, A., Kopf, A., Yang, E., DeVito, Z., Raison, M., Tejani, A., Chilamkurthy, S., Steiner, B., Fang, L., Bai, J., Chintala, S.: Pytorch: An imperativ...

  21. [29]

    In: CVPR (2025)

    Piccinelli, L., Sakaridis, C., Segu, M., Yang, Y.H., Li, S., Abbeloos, W., Van Gool, L.: UniK3D: Universal camera monocular 3d estimation. In: CVPR (2025)

  22. [30]

    IEEE TPAMI (2026)

    Piccinelli, L., Sakaridis, C., Yang, Y.H., Segu, M., Li, S., Abbeloos, W., Gool, L.V.: UniDepthV2: Universal monocular metric depth estimation made simpler. IEEE TPAMI (2026)

  23. [31]

    In: 3DV (2026)

    Piccinelli, L., Wandel, T., Sakaridis, C., Abbeloos, W., Gool, L.V.: Video depth propagation. In: 3DV (2026)

  24. [32]

    In: CVPR (2024)

    Piccinelli, L., Yang, Y.H., Sakaridis, C., Segu, M., Li, S., Van Gool, L., Yu, F.: UniDepth: Universal monocular metric depth estimation. In: CVPR (2024)

  25. [33]

    In: CVPR

    Rezatofighi, H., Tsoi, N., Gwak, J., Sadeghian, A., Reid, I., Savarese, S.: Generalized intersection over union: A metric and a loss for bounding box regression. In: CVPR. pp. 658–666 (2019)

  26. [34]

    In: ECCV

    Rukhovich, D.,Vorontsova, A., Konushin, A.:Fcaf3d: Fully convolutionalanchor-free 3d object detection. In: ECCV. pp. 477–493. Springer (2022)

  27. [35]

    In: WACV

    Rukhovich, D., Vorontsova, A., Konushin, A.: Imvoxelnet: Image to voxels projection for monocular and multi-view general-purpose 3d object detection. In: WACV. pp. 2397–2406 (2022)

  28. [36]

    In: ICIP

    Rukhovich, D., Vorontsova, A., Konushin, A.: Tr3d: Towards real-time indoor 3d object detection. In: ICIP. pp. 281–285. IEEE (2023) 18 Y-H. Yang et al

  29. [37]

    arXiv preprint arXiv:2406.10224 (2024)

    Straub, J., DeTone, D., Shen, T., Yang, N., Sweeney, C., Newcombe, R.: Efm3d: A benchmark for measuring progress towards 3d egocentric foundation models. arXiv preprint arXiv:2406.10224 (2024)

  30. [38]

    arXiv preprint arXiv:2503.01309 (2025)

    Tang, Y., Zhang, J., Lan, Y., Guo, Y., Dong, D., Zhu, C., Xu, K.: Onlineanyseg: Online zero-shot 3d segmentation by visual foundation model guided 2d mask merging. arXiv preprint arXiv:2503.01309 (2025)

  31. [39]

    In: ICCV

    Tu, T., Chuang, S.P., Liu, Y.L., Sun, C., Zhang, K., Roy, D., Kuo, C.H., Sun, M.: Imgeonet: Image-induced geometry-aware voxel representation for multi-view 3d object detection. In: ICCV. pp. 6996–7007 (2023)

  32. [40]

    In: CVPR

    Wang, J., Chen, M., Karaev, N., Vedaldi, A., Rupprecht, C., Novotny, D.: Vggt: Visual geometry grounded transformer. In: CVPR. pp. 5294–5306 (2025)

  33. [41]

    In: ICLR (2026)

    Wang, Y., Zhou, J., Zhu, H., Chang, W., Zhou, Y., Li, Z., Chen, J., Pang, J., Shen, C., He, T.: Pi3: Permutation-equivariant visual geometry learning. In: ICLR (2026)

  34. [42]

    arXiv preprint arXiv:2408.11811 (2024)

    Xu, X., Chen, H., Zhao, L., Wang, Z., Zhou, J., Lu, J.: Embodiedsam: Online segment any 3d thing in real time. arXiv preprint arXiv:2408.11811 (2024)

  35. [43]

    In: CVPR

    Yang, C., Chen, Y., Tian, H., Tao, C., Zhu, X., Zhang, Z., Huang, G., Li, H., Qiao, Y., Lu, L., et al.: Bevformer v2: Adapting modern image backbones to bird’s-eye-view recognition via perspective supervision. In: CVPR. pp. 17830–17839 (2023)

  36. [44]

    arXiv preprint arXiv:2310.11441 (2023)

    Yang, J., Zhang, H., Li, F., Zou, X., Li, C., Gao, J.: Set-of-mark prompting unleashes extraordinary visual grounding in gpt-4v. arXiv preprint arXiv:2310.11441 (2023)

  37. [45]

    arXiv:2406.09414 (2024)

    Yang, L., Kang, B., Huang, Z., Zhao, Z., Xu, X., Feng, J., Zhao, H.: Depth anything v2. arXiv:2406.09414 (2024)

  38. [46]

    In: ICCV

    Yang, Y.H., Piccinelli, L., Segu, M., Li, S., Huang, R., Fu, Y., Pollefeys, M., Blum, H., Bauer, Z.: 3d-mood: Lifting 2d to 3d for monocular open-set object detection. In: ICCV. pp. 7429–7439 (October 2025)

  39. [47]

    arXiv preprint arXiv:2411.16833 (2024)

    Yao, J., Gu, H., Chen, X., Wang, J., Cheng, Z.: Open vocabulary monocular 3d object detection. arXiv preprint arXiv:2411.16833 (2024)

  40. [48]

    arXiv preprint arXiv:2601.01676 (2026)

    Yao, J., Redoy, R.M., Elbaum, S., Dwyer, M.B., Cheng, Z.: Labelany3d: Label any object 3d in the wild. arXiv preprint arXiv:2601.01676 (2026)

  41. [49]

    arXiv preprint arXiv:2504.07958 (2025)

    Zhang, H., Jiang, H., Yao, Q., Sun, Y., Zhang, R., Zhao, H., Li, H., Zhu, H., Yang, Z.: Detect anything 3d in the wild. arXiv preprint arXiv:2504.07958 (2025)

  42. [50]

    arXiv preprint arXiv:2203.03605 (2022)

    Zhang, H., Li, F., Liu, S., Zhang, L., Su, H., Zhu, J., Ni, L.M., Shum, H.Y.: Dino: Detr with improved denoising anchor boxes for end-to-end object detection. arXiv preprint arXiv:2203.03605 (2022)

  43. [51]

    arXiv preprint arXiv:2510.23607 (2025)

    Zhang, Y., Wu, X., Lao, Y., Wang, C., Tian, Z., Wang, N., Zhao, H.: Concerto: Joint 2d-3d self-supervised learning emerges spatial representations. arXiv preprint arXiv:2510.23607 (2025)

  44. [52]

    In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition

    Zhou, Y., Barnes, C., Lu, J., Yang, J., Li, H.: On the continuity of rotation representations in neural networks. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 5745–5753 (2019)

  45. [53]

    ICLR (2026)

    Zhuo, D., Zheng, W., Guo, J., Wu, Y., Zhou, J., Lu, J.: Streaming 4d visual geometry transformer. ICLR (2026)

Pith tools

Reviewed August 16, 2026 · model on record in the stance chip above.