REVIEW 3 major objections 5 minor 90 references
RefineAny3D: Depth Refinement as Semantic Alignment for Monocular 3D Detection
T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read A vision-language module can refine the depth of any monocular 3D box—from closed-set detectors, open-vocabulary detectors, or auto-labelers—by treating depth error as a visible misalignment of the projected box and correcting it with…
desk verdict A useful empirical paper with a clean new task, but the central 'semantic alignment' mechanism is plausible rather than proven on real detector outputs. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the projected wireframe alignment check paired with a factored action-token vocabulary. RefineAny3D projects the eight corners of the candidate box through the camera intrinsics and renders them as a wireframe on the image, so metric scale and intrinsics are absorbed into a purely 2D question: does the box tightly enclose the object? Six special tokens answer that question categorically—three direction tokens for closer, ok, and farther, and three magnitude tokens for small, medium, and large—with magnitude defined relative to the object's mean linear extent so a step means the same thing across object sizes. The VLM first produces a short reasoning text that identifies the object, recalls a rough size, and points to the visual evidence, then decodes the action; the depth is updated as a signed object-relative step and the loop repeats until ok or a cap of two steps. Training uses about 3 million synthetic depth-perturbation samples built from Omni3D ground-truth boxes, with nine perturbation slots per annotation that balance all token combinations; the two-stage recipe first warms up the six new token embeddings with semantic initialization, then fine-tunes the language tower while freezing the vision encoder to preserve general visual priors.
What would settle it
Evaluate RefineAny3D's first-step direction accuracy on a held-out set of real detector predictions in two conditions: the raw coupled predictions, and the same predictions with dimensions and yaw replaced by ground truth. If direction accuracy in the raw condition is no better than random while the decoupled-condition accuracy is high, the claimed transfer from synthetic depth-only training to realistic detector residuals is not happening.
Extended reading notes
Core claim
On its own terms, the discovery is that object depth in monocular 3D detection is not just an attribute to regress but a residual that can be repaired after the fact from 2D visual evidence. The paper first isolates the bottleneck with an oracle study: replacing a strong detector's predicted depth with ground truth raises AP3D by +29.92 on Omni3D, while substituting a state-of-the-art depth foundation model lowers it by 3.68. RefineAny3D then closes part of that gap by rendering the candidate 3D box as a wireframe overlay and training a VLM to judge alignment and emit direction and magnitude action tokens. The claimed transfer rests on the judgment being local and camera-agnostic: the same module improves MonoCoP on KITTI, raising Easy AP3D from 32.06 to 35.62; improves DetAny3D with oracle 2D boxes on Omni3D, raising AP3D from 34.38 to 38.73; and improves auto-labeled pseudo-labels, yielding a downstream detector with +2.37 Moderate AP3D, all without retraining for any upstream method. On a controlled benchmark with novel categories and rescaled cameras, the model retains most of its direction accuracy, supporting the generalization claim.
Load-bearing premise
The load-bearing premise is that depth error is visually readable from the projected wireframe's misalignment, and that a model trained on synthetic depth-only perturbations of ground-truth boxes will keep reading that signal on real detector outputs whose depth, size, orientation, and position errors are coupled.
Editorial extensions
If this is right
- A single refinement module can be attached to any monocular 3D pipeline that outputs boxes and camera intrinsics, improving AP3D without retraining the detector or changing its architecture.
- Depth foundation models should not be treated as drop-in replacements for object-level depth in 3D detection; at tight 3D IoU thresholds their bias propagates into detection error.
- Auto-labeling pipelines can be upgraded by refining pseudo-labels before training downstream detectors, narrowing the gap to ground-truth-trained accuracy without new annotations.
- Because the module terminates with an abstain, leaving roughly 38 percent of objects unchanged, it can act as a post-hoc safety net that does not disturb already-aligned predictions.
Reading between the lines
- The same alignment-token recipe could be extended to refine yaw and dimensions, not just depth; the paper's own oracle study shows those residual errors are small for in-domain detectors, but on open-vocabulary or auto-labeled boxes they may become large enough to matter.
- The failure of a lightweight classifier trained with identical action targets suggests that the transfer to real detector outputs is carried by the VLM's broad pretrained priors; distilling those priors into a smaller model would be a natural efficiency test.
- A stronger data recipe that perturbs depth, dimensions, yaw, and projected position jointly, rather than depth alone, could either make the model more robust to coupled residuals or reveal the ceiling of the visual-alignment formulation.
- The reformulation principle, turning a metric residual into a discrete visually checkable decision, may transfer to other geometric refinement problems such as camera pose or 6-DoF object pose.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes RefineAny3D, a vision-language model that refines the object depth of candidate 3D boxes from any upstream monocular detector by emitting discrete action tokens (direction and magnitude) grounded in chain-of-thought reasoning over a projected wireframe overlay. The authors recast depth refinement as semantic alignment in image space, train on a large synthetic dataset constructed by perturbing ground-truth depth along the camera ray while holding all other attributes fixed, and apply the model iteratively at inference. They report consistent AP3D gains on a closed-set detector (MonoCoP on KITTI), an open-vocabulary detector (DetAny3D on Omni3D), and an auto-labeling pipeline (LabelAny3D), alongside ablations, an oracle study, and comparisons with geometric fitting and a DINOv2 action classifier.
Significance. The paper has several genuine strengths: the oracle study (Table 8) cleanly shows depth as the dominant bottleneck; the comparison against geometric projection fitting and a DINOv2 classifier (Table 6) is a thoughtful attempt to rule out simpler alternatives; the iteration-convergence analysis (Appendix F) and the honesty about limitations (Appendix J) are commendable. If the central mechanism were validated, the module would be a practical plug-and-play contribution with value for closed-set and open-vocabulary detection and for auto-labeling. However, the load-bearing assumption of the paper—that a model trained on synthetic depth-only perturbations transfers its alignment judgment to real detector outputs with coupled residuals in depth, dimensions, yaw, and position—is asserted rather than directly measured. The current evidence leaves open the possibility that the observed end-task gains come from category-size priors embedded in the CoT supervision or from mean-depth shifts rather than from the claimed visual alignment mechanism. The significance of the work is therefore conditional on additional evidence that this mechanism actually operates on real detector outputs.
major comments (3)
- [Appendix A.2] The central claim of the paper—that depth refinement reduces to a visual alignment judgment that transfers from synthetic depth-only perturbations to real detector outputs—is not directly measured. The Refine3D benchmark (Sec. 5.1 and Appendix E) tests only synthetically depth-perturbed ground-truth boxes using the same perturbation schedule as the training data (Sec. D.3), so it cannot distinguish visual-alignment reasoning from category-size priors. The only evidence for real-output transfer is the DINOv2 classifier's failure (Table 6, Appendix A.2) plus the assertion of 'broad visual priors' (A.3). However, the chain-of-thought supervision includes category-specific size recalls (e.g., 'a car is typically 3.5–4.5 m long', Fig. 3 and Sec. D.4), which provides an alternative pathway for the model to produce correct depth corrections without reading wireframe misalignment. The paper should report per-step direction/magnitude accuracy (or at least first-step depth-error reduction) on real detector predictions matched to ground truth on KITTI and Omni3D, and compare against a variant that receives the category label but not the wireframe overlay. Without these numbers, the +3.56 AP3D gain on KITTI Easy could in principle be produced by a model that regresses toward the category mean depth.
- [Appendix A.2] The DINOv2 comparison is not a controlled test of the visual-alignment mechanism. The DINOv2 classifier is a small discriminative network trained on the same action supervision but without chain-of-thought reasoning or category-specific world-knowledge recalls. Its failure under distribution shift therefore does not demonstrate that RefineAny3D's success comes from visual alignment; it is equally consistent with the VLM leveraging the size priors embedded in the CoT targets. To isolate the mechanism, the authors should ablate the 'Recall' step from the CoT (or remove category labels from the input) and evaluate on real detector outputs, ideally also with the wireframe overlay removed from the input. If the model still refines depth accurately without these cues, the claim that it is performing semantic alignment in image space is not supported.
- [Tables 2, 4] The paper does not report error bars or statistical significance (the checklist acknowledges this), and several headlined gains are small: +0.67 AP3D on KITTI Hard (Table 2) and +0.72 on Hard in the auto-labeling experiment (Table 4). Given the high variance of AP3D at IoU≥0.7 for small numbers of hard samples, the claim of 'consistent gains' across all difficulty levels is not statistically established. The authors should provide at least bootstrapped confidence intervals over test samples, or multiple training seeds for the downstream detector, for the main experimental tables.
minor comments (5)
- [Eq. (5)] The magnitude step sizes (0.20, 0.55, 1.10 times the mean object extent) are selected as midpoints of the training perturbation ranges, but the sensitivity of final AP3D to these coefficients is not analyzed; the token semantics are therefore tied to the training schedule, which should be discussed as a design choice rather than a parameter-free consequence of the formulation.
- [Sec. E.4] The Novel Camera split rescales the image and the intrinsics jointly, which leaves the relationship between the projected wireframe and the object unchanged up to image resolution; this is more a resolution-generalization test than a camera-generalization test. Consider varying the focal length or camera height independently to make the split more challenging and meaningful.
- [Sec. 3.2] The ⟨depth_ok⟩ outcome has no magnitude token defined in the training schedule, but the inference contract always emits both a direction and a magnitude token; it should be clarified whether the magnitude token is conditionally generated and ignored for ⟨depth_ok⟩, and how this is handled in constrained decoding.
- [Sec. D.4] The CoT generator is given the ground-truth direction/magnitude token and composes 'visual evidence' from the label plus a caption, which can produce hallucinated evidence that does not reflect the actual image; the paper should explicitly note this as a data-generation caveat that may affect the extent to which the model learns grounded visual reasoning.
- [Sec. 5.2] The claim of being a detector-agnostic refinement module is supported by experiments on a single closed-set detector (MonoCoP) in the main tables; applying RefineAny3D to one or two additional closed-set detectors (e.g., MonoDETR or MonoDGP) on KITTI would strengthen the claim of generality.
Circularity Check
No significant circularity: RefineAny3D's real-detector AP gains are external, though the synthetic Refine3D benchmark is self-consistent with the training schedule.
full rationale
The paper's derivation chain is self-contained against external benchmarks. The training signal is synthetic: GT depth is perturbed along the camera ray and the target action tokens are read off the perturbation schedule (Sec. D.3, Table 10), while the update rule (Eqs. 4-6) uses the same object-relative magnitudes. This creates an internally consistent task definition, but the central claims are not tested solely on that schedule: RefineAny3D is applied to real detector outputs (MonoCoP on KITTI, Table 2; DetAny3D on Omni3D, Table 3; LabelAny3D pseudo-labels, Table 4) and evaluated with GT-based AP3D, which is an external outcome that cannot be manufactured by the action-token construction. The Refine3D benchmark (Appendix E) uses the same perturbation protocol as training, making it a controlled in-distribution test rather than an independent validation; the real generalization evidence is the detector AP gains under novel categories/cameras. Appendix A.2 discloses that a DINOv2 classifier trained with identical supervision fails on real detector outputs, and the paper attributes the VLM's success to broad pretraining priors without reporting per-step accuracy on real residuals; this is a genuine generalization/correctness risk, not a circular reduction. No load-bearing self-citation or imported uniqueness theorem is used: MonoCoP [75] appears as a baseline, not as justification for the method. The paper therefore contains no step where a prediction reduces by definition to its training input.
Assumptions & free parameters
free parameters (4)
- magnitude step ratios =
0.20 / 0.55 / 1.10 times sobject
- depth perturbation ranges r =
[0.10, 0.30), [0.30, 0.80), [0.80, 1.50], symmetric negative ranges, dead zones [0, 0.10)
- Tmax = 2 =
2
- filter thresholds =
truncation <= 0.05, visibility >= 0.8 (0.6 nuScenes), 2D IoU > 0.85, min 2D footprint 32x32 px
assumptions (4)
- domain assumption A 3D box projected with correct depth tightly encloses the visible object, and depth error produces a consistent visual signature (too small means too far, too large means too close).
- domain assumption The autoregressive factorization P(S(t)|I(t)) = P(r(t)|I(t)) * P(a(t)|I(t), r(t)) implies that single-step supervision on local actions generalizes to multi-step iterative inference.
- domain assumption The VLM's visual priors, preserved by freezing the vision encoder, transfer the alignment judgment from synthetic depth-only perturbations to real coupled detector residuals.
- domain assumption Ground-truth depth is the correct refinement target and refining only depth while keeping other attributes fixed is sufficient to improve downstream AP3D.
invented entities (2)
-
Six action tokens: depth_closer, depth_farther, depth_ok, step_small, step_medium, step_large
-
Refine3D benchmark
Cite this review
Pith. "Pith review of RefineAny3D: Depth Refinement as Semantic Alignment for Monocular 3D Detection." pith.science (2026). https://pith.science/paper/USKUYFRY
@misc{pith2026260809147,
author = {Pith},
title = {Pith review of: RefineAny3D: Depth Refinement as Semantic Alignment for Monocular 3D Detection},
year = {2026},
howpublished = {\url{https://pith.science/paper/USKUYFRY}},
note = {Machine review of arXiv:2608.09147}
}
read the original abstract
Monocular 3D object detection spans two regimes: closed-set detectors operating within a fixed category vocabulary, and open-vocabulary detectors that localize arbitrary categories by leveraging depth foundation models for 3D geometry. We find that current depth foundation models, despite their strong zero-shot generalization, lack the object-level precision 3D detection demands: substituting a state-of-the-art depth foundation model for a strong detector's predicted depth degrades accuracy, even falling below the detector's own prediction. Rather than pushing detectors or depth models to be more accurate end-to-end, we treat object-level depth refinement as a stand-alone task and present RefineAny3D, a vision-language model that corrects depth without ever predicting a numerical value. Our key insight is that depth error has a direct visual signature in image space: when projected onto the image, a correctly placed box tightly encloses the object, while a too-far box projects too small and a too-close box projects too large. Depth refinement thus reduces to a visual alignment problem rather than a metric regression problem, which we instantiate by extending the VLM's vocabulary with action tokens that replace numerical depth output with categorical decisions, and by supervising the model on a large-scale chain-of-thought dataset that grounds each decision in explicit visual evidence. Applied as a single post-hoc step, RefineAny3D delivers consistent gains across closed-set detectors, open-vocabulary detectors, and 3D auto-labeling tools, and generalizes to novel categories, scenes, and cameras without retraining.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Qwen3-vl technical report.arXiv preprint arXiv:2511.21631,
Shuai Bai, Yuxuan Cai, Ruizhe Chen, et al. Qwen3-vl technical report.arXiv preprint arXiv:2511.21631,
-
[2]
Qwen2.5-vl technical report.arXiv preprint arXiv:2502.13923,
Shuai Bai, Keqin Chen, Xuejing Liu, et al. Qwen2.5-vl technical report.arXiv preprint arXiv:2502.13923,
-
[3]
Omni3d: A large benchmark and model for 3D object detection in the wild
Garrick Brazil, Abhinav Kumar, Julian Straub, Nikhila Ravi, Justin Johnson, and Georgia Gkioxari. Omni3d: A large benchmark and model for 3D object detection in the wild. InCVPR, 2023. 1, 3, 6, 7, 8, 17, 19, 22, 25, 26, 29
2023
-
[4]
M3D-RPN: Monocular 3D region proposal network for object detection
Garrick Brazil and Xiaoming Liu. M3D-RPN: Monocular 3D region proposal network for object detection. InICCV, 2019. 3
2019
-
[5]
Kinematic 3d object detection in monocular video
Garrick Brazil, Gerard Pons-Moll, Xiaoming Liu, and Bernt Schiele. Kinematic 3d object detection in monocular video. InECCV, 2020. 3
2020
-
[6]
nuscenes: A multimodal dataset for autonomous driving
Holger Caesar, Varun Bankiti, Alex H Lang, Sourabh V ora, Venice Erin Liong, Qiang Xu, Anush Krishnan, Yu Pan, Giancarlo Baldan, and Oscar Beijbom. nuscenes: A multimodal dataset for autonomous driving. InCVPR, 2020. 3, 29
2020
-
[7]
Vip-llava: Making large multimodal models understand arbitrary visual prompts
Mu Cai, Haotian Liu, Siva Karthik Mustikovela, Gregory P Meyer, Yuning Chai, Dennis Park, and Yong Jae Lee. Vip-llava: Making large multimodal models understand arbitrary visual prompts. InCVPR, 2024. 3
2024
-
[8]
End-to-end object detection with transformers
Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to-end object detection with transformers. InECCV, 2020. 3
2020
Show all 90 references
-
[9]
Spatialvlm: Endowing vision-language models with spatial reasoning capabilities
Boyuan Chen, Zhuo Xu, Sean Kirmani, Brain Ichter, Dorsa Sadigh, Leonidas Guibas, and Fei Xia. Spatialvlm: Endowing vision-language models with spatial reasoning capabilities. InCVPR, 2024. 3
2024
-
[10]
End-to-end autonomous driving: Challenges and frontiers.TPAMI, 2024
Li Chen, Penghao Wu, Kashyap Chitta, Bernhard Jaeger, Andreas Geiger, and Hongyang Li. End-to-end autonomous driving: Challenges and frontiers.TPAMI, 2024. 1
2024
-
[11]
Group detr: Fast detr training with group-wise one-to-many assignment
Qiang Chen, Xiaokang Chen, Jian Wang, Shan Zhang, Kun Yao, Haocheng Feng, Junyu Han, Errui Ding, Gang Zeng, and Jingdong Wang. Group detr: Fast detr training with group-wise one-to-many assignment. InCVPR, 2023. 3
2023
-
[12]
Monocular 3D object detection for autonomous driving
Xiaozhi Chen, Kaustav Kundu, Ziyu Zhang, Huimin Ma, Sanja Fidler, and Raquel Urtasun. Monocular 3D object detection for autonomous driving. InCVPR, 2016. 1
2016
-
[13]
Spatialrgpt: Grounded spatial reasoning in vision-language models
An-Chieh Cheng, Hongxu Yin, Yang Fu, Qiushan Guo, Ruihan Yang, Jan Kautz, Xiaolong Wang, and Sifei Liu. Spatialrgpt: Grounded spatial reasoning in vision-language models. InNeurIPS, 2024. 3
2024
-
[14]
Vlm-3r: Vision-language models augmented with instruction-aligned 3d reconstruction.arXiv preprint arXiv:2505.20279, 2025
Zhiwen Fan, Jian Zhang, Renjie Li, Junge Zhang, Runjin Chen, Hezhen Hu, Kevin Wang, Huaizhi Qu, Shijie Zhou, Dilin Wang, et al. Vlm-3r: Vision-language models augmented with instruction-aligned 3d reconstruction.arXiv preprint arXiv:2505.20279, 2025. 3
2025 arXiv
-
[15]
Are we ready for autonomous driving? the kitti vision benchmark suite
Andreas Geiger, Philip Lenz, and Raquel Urtasun. Are we ready for autonomous driving? the kitti vision benchmark suite. InCVPR, 2012. 3, 7, 8, 14, 24, 29
2012
-
[16]
Omni-rgpt: Unifying image and video region-level understanding via token marks
Miran Heo, Min-Hung Chen, De-An Huang, Sifei Liu, Subhashree Radhakrishnan, Seon Joo Kim, Yu- Chiang Frank Wang, and Ryo Hachiuma. Omni-rgpt: Unifying image and video region-level understanding via token marks. InCVPR, 2025. 3
2025
-
[17]
3d-llm: Injecting the 3d world into large language models.NeurIPS, 2023
Yining Hong, Haoyu Zhen, Peihao Chen, Shuhong Zheng, Yilun Du, Zhenfang Chen, and Chuang Gan. 3d-llm: Injecting the 3d world into large language models.NeurIPS, 2023. 3
2023
-
[18]
G 2vlm: Geometry grounded vision language model with unified 3d reconstruction and spatial reasoning.arXiv preprint arXiv:2511.21688, 2025
Wenbo Hu, Jingli Lin, Yilin Long, Yunlong Ran, Lihan Jiang, Yifan Wang, Chenming Zhu, Runsen Xu, Tai Wang, and Jiangmiao Pang. G 2vlm: Geometry grounded vision language model with unified 3d reconstruction and spatial reasoning.arXiv preprint arXiv:2511.21688, 2025. 3
2025
-
[19]
Monodtr: Monocular 3D object detection with depth-aware transformer
Kuan-Chih Huang, Tsung-Han Wu, Hung-Ting Su, and Winston H Hsu. Monodtr: Monocular 3D object detection with depth-aware transformer. InCVPR, 2022. 3
2022
-
[20]
3d-r1: Enhancing reasoning in 3d vlms for unified scene understanding.arXiv preprint arXiv:2507.23478, 2025
Ting Huang, Zeyu Zhang, and Hao Tang. 3d-r1: Enhancing reasoning in 3d vlms for unified scene understanding.arXiv preprint arXiv:2507.23478, 2025. 3 10
2025 arXiv
-
[21]
Vision-r1: Incentivizing reasoning capability in multimodal large language models
Wenxuan Huang, Bohan Jia, Zijie Zhai, Shaosheng Cao, Zheyu Ye, Fei Zhao, Zhe Xu, Xu Tang, Yao Hu, and Shaohui Lin. Vision-r1: Incentivizing reasoning capability in multimodal large language models. arXiv preprint arXiv:2503.06749, 2025. 3
2025 arXiv
-
[22]
MonoMAE: Enhancing monocular 3D detection through depth-aware masked autoencoders
Xueying Jiang, Sheng Jin, Xiaoqin Zhang, Ling Shao, and Shijian Lu. MonoMAE: Enhancing monocular 3D detection through depth-aware masked autoencoders. InNeurIPS, 2024. 7
2024
-
[23]
Openvla: An open-source vision-language-action model.arXiv preprint arXiv:2406.09246, 2024
Moo Jin Kim, Karl Pertsch, Siddharth Karamcheti, Ted Xiao, Ashwin Balakrishna, Suraj Nair, Rafael Rafailov, Ethan Foster, Grace Lam, Pannag Sanketi, et al. Openvla: An open-source vision-language-action model.arXiv preprint arXiv:2406.09246, 2024. 3
2024 arXiv
-
[24]
Deviant: Depth equivariant network for monocular 3D object detection
Abhinav Kumar, Garrick Brazil, Enrique Corona, Armin Parchami, and Xiaoming Liu. Deviant: Depth equivariant network for monocular 3D object detection. InECCV, 2022. 3
2022
-
[25]
GrooMeD-NMS: Grouped mathematically differen- tiable nms for monocular 3D object detection
Abhinav Kumar, Garrick Brazil, and Xiaoming Liu. GrooMeD-NMS: Grouped mathematically differen- tiable nms for monocular 3D object detection. InCVPR, 2021. 3
2021
-
[26]
Lisa: Reasoning segmentation via large language model
Xin Lai, Zhuotao Tian, Yukang Chen, Yanwei Li, Yuhui Yuan, Shu Liu, and Jiaya Jia. Lisa: Reasoning segmentation via large language model. InCVPR, 2024. 2
2024
-
[27]
Spatial forcing: Implicit spatial representation alignment for vision-language-action model
Fuhao Li, Wenxuan Song, Han Zhao, Jingbo Wang, Pengxiang Ding, Donglin Wang, Long Zeng, and Haoang Li. Spatial forcing: Implicit spatial representation alignment for vision-language-action model. arXiv preprint arXiv:2510.12276, 2025. 3
-
[28]
Diversity matters: Fully exploiting depth clues for reliable monocular 3D object detection
Zhuoling Li, Zhan Qu, Yang Zhou, Jianzhuang Liu, Haoqian Wang, and Lihui Jiang. Diversity matters: Fully exploiting depth clues for reliable monocular 3D object detection. InCVPR, 2022. 3
2022
-
[29]
Unimode: Unified monocular 3d object detection
Zhuoling Li, Xiaogang Xu, SerNam Lim, and Hengshuang Zhao. Unimode: Unified monocular 3d object detection. InCVPR, 2024. 3
2024
-
[30]
Draw-and-understand: Leveraging visual prompts to enable mllms to comprehend what you want.arXiv preprint arXiv:2403.20271, 2024
Weifeng Lin, Xinyu Wei, Ruichuan An, Peng Gao, Bocheng Zou, Yulin Luo, Siyuan Huang, Shang- hang Zhang, and Hongsheng Li. Draw-and-understand: Leveraging visual prompts to enable mllms to comprehend what you want.arXiv preprint arXiv:2403.20271, 2024. 3
2024 arXiv
-
[31]
Monotakd: Teaching assistant knowledge distillation for monocular 3d object detection
Hou-I Liu, Christine Wu, Jen-Hao Cheng, Wenhao Chai, Shian-Yun Wang, Gaowen Liu, Hugo Latapie, Jhih-Ciang Wu, Jenq-Neng Hwang, Hong-Han Shuai, et al. Monotakd: Teaching assistant knowledge distillation for monocular 3d object detection. InCVPR, 2025. 3, 7
2025
-
[32]
Edge assisted real-time object detection for mobile augmented reality
Luyang Liu, Hongyu Li, and Marco Gruteser. Edge assisted real-time object detection for mobile augmented reality. InMobiCom, 2019. 1
2019
-
[33]
Grounding dino: Marrying dino with grounded pre-training for open-set object detection.arXiv preprint arXiv:2303.05499, 2023
Shilong Liu, Zhaoyang Zeng, Tianhe Ren, Feng Li, Hao Zhang, Jie Yang, Chunyuan Li, Jianwei Yang, Hang Su, Jun Zhu, et al. Grounding dino: Marrying dino with grounded pre-training for open-set object detection.arXiv preprint arXiv:2303.05499, 2023. 3
2023 arXiv
-
[34]
Monocular 3D object detection with bounding box denoising in 3D by perceiver
Xianpeng Liu, Ce Zheng, Kelvin B Cheng, Nan Xue, Guo-Jun Qi, and Tianfu Wu. Monocular 3D object detection with bounding box denoising in 3D by perceiver. InICCV, 2023. 3
2023
-
[35]
SMOKE: Single-stage monocular 3D object detection via keypoint estimation
Zechen Liu, Zizhang Wu, and Roland Tóth. SMOKE: Single-stage monocular 3D object detection via keypoint estimation. InCVPR Workshop, 2020. 3
2020
-
[36]
Geometry uncertainty projection network for monocular 3D object detection
Yan Lu, Xinzhu Ma, Lei Yang, Tianzhu Zhang, Yating Liu, Qi Chu, Junjie Yan, and Wanli Ouyang. Geometry uncertainty projection network for monocular 3D object detection. InICCV, 2021. 3, 14
2021
-
[37]
Delving into localization errors for monocular 3D object detection
Xinzhu Ma, Yinmin Zhang, Dan Xu, Dongzhan Zhou, Shuai Yi, Haojie Li, and Wanli Ouyang. Delving into localization errors for monocular 3D object detection. InCVPR, 2021. 3
2021
-
[38]
Spatiallm: Training large language models for structured indoor modeling
Yongsen Mao, Junhao Zhong, Chuan Fang, Jia Zheng, Rui Tang, Hao Zhu, Ping Tan, and Zihan Zhou. Spatiallm: Training large language models for structured indoor modeling. InNeurIPS, 2025. 3
2025
-
[39]
3D bounding box estimation using deep learning and geometry
Arsalan Mousavian, Dragomir Anguelov, John Flynn, and Jana Košecká. 3D bounding box estimation using deep learning and geometry. InCVPR, 2017. 14
2017
-
[40]
Dinov2: Learning robust visual features without supervision.arXiv preprint arXiv:2304.07193, 2023
Maxime Oquab, Timothée Darcet, Théo Moutakanni, Huy V o, Marc Szafraniec, Vasil Khalidov, Pierre Fernandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, et al. Dinov2: Learning robust visual features without supervision.arXiv preprint arXiv:2304.07193, 2023. 15
2023 arXiv
-
[41]
Learning occupancy for monocular 3D object detection
Liang Peng, Junkai Xu, Haoran Cheng, Zheng Yang, Xiaopei Wu, Wei Qian, Wenxiao Wang, Boxi Wu, and Deng Cai. Learning occupancy for monocular 3D object detection. InCVPR, 2024. 1 11
2024
-
[42]
UniDepthV2: Universal monocular metric depth estimation made simpler, 2025
Luigi Piccinelli, Christos Sakaridis, Yung-Hsu Yang, Mattia Segu, Siyuan Li, Wim Abbeloos, and Luc Van Gool. UniDepthV2: Universal monocular metric depth estimation made simpler, 2025. 1, 3
2025
-
[43]
Monodgp: Monocular 3D object detection with decoupled-query and geometry-error priors.arXiv preprint arXiv:2410.19590, 2024
Fanqi Pu, Yifan Wang, Jiru Deng, and Wenming Yang. Monodgp: Monocular 3D object detection with decoupled-query and geometry-error priors.arXiv preprint arXiv:2410.19590, 2024. 3, 7
2024 arXiv
-
[44]
Monoground: Detecting monocular 3D objects from the ground
Zequn Qin and Xi Li. Monoground: Detecting monocular 3D objects from the ground. InCVPR, 2022. 3
2022
-
[45]
Loc3r-vlm: Language- based localization and 3d reasoning with vision-language models, 2026
Kevin Qu, Haozhe Qi, Mihai Dusmanu, Mahdi Rad, Rui Wang, and Marc Pollefeys. Loc3r-vlm: Language- based localization and 3d reasoning with vision-language models, 2026. 3
2026
-
[46]
Vlm-r1: A stable and generalizable r1-style large vision-language model.arXiv preprint arXiv:2504.07615, 2025
Haozhan Shen, Peng Liu, Jingcheng Li, Chunxin Fang, Yibo Ma, Jiajia Liao, Qiaoli Shen, Zilun Zhang, Kangjia Zhao, Qianqian Zhang, et al. Vlm-r1: A stable and generalizable r1-style large vision-language model.arXiv preprint arXiv:2504.07615, 2025. 3
2025 arXiv
-
[47]
PointRCNN: 3D object proposal generation and detection from point cloud
Shaoshuai Shi, Xiaogang Wang, and Hongsheng Li. PointRCNN: 3D object proposal generation and detection from point cloud. InCVPR, 2019. 1
2019
-
[48]
Geometry- based distance decomposition for monocular 3D object detection
Xuepeng Shi, Qi Ye, Xiaozhi Chen, Chuangrong Chen, Zhixiang Chen, and Tae-Kyun Kim. Geometry- based distance decomposition for monocular 3D object detection. InICCV, 2021. 1
2021
-
[49]
Geometry- based distance decomposition for monocular 3D object detection
Xuepeng Shi, Qi Ye, Xiaozhi Chen, Chuangrong Chen, Zhixiang Chen, and Tae-Kyun Kim. Geometry- based distance decomposition for monocular 3D object detection. InICCV, 2021. 14
2021
-
[50]
What does clip know about a red circle? visual prompt engineering for vlms
Aleksandar Shtedritski, Christian Rupprecht, and Andrea Vedaldi. What does clip know about a red circle? visual prompt engineering for vlms. InCVPR, 2023. 3
2023
-
[51]
Eva-clip: Improved training techniques for clip at scale.arXiv preprint arXiv:2303.15389, 2023
Quan Sun, Yuxin Fang, Ledell Wu, Xinlong Wang, and Yue Cao. Eva-clip: Improved training techniques for clip at scale.arXiv preprint arXiv:2303.15389, 2023. 3
2023 arXiv
-
[52]
Cambrian-1: A fully open, vision-centric exploration of multimodal llms, 2024
Shengbang Tong, Ellis Brown, Penghao Wu, Sanghyun Woo, Manoj Middepogu, Sai Charitha Akula, Jihan Yang, Shusheng Yang, Adithya Iyer, Xichen Pan, Austin Wang, Rob Fergus, Yann LeCun, and Saining Xie. Cambrian-1: A fully open, vision-centric exploration of multimodal llms, 2024. 25
2024
-
[53]
Vggt: Visual geometry grounded transformer
Jianyuan Wang, Minghao Chen, Nikita Karaev, Andrea Vedaldi, Christian Rupprecht, and David Novotny. Vggt: Visual geometry grounded transformer. InCVPR, 2025. 3
2025
-
[54]
Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution.arXiv preprint arXiv:2409.12191, 2024
Peng Wang, Shuai Bai, Sinan Tan, et al. Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution.arXiv preprint arXiv:2409.12191, 2024. 2
2024 arXiv
-
[55]
Moge-2: Accurate monocular geometry with metric scale and sharp details
Ruicheng Wang, Sicheng Xu, Yue Dong, Yu Deng, Jianfeng Xiang, Zelong Lv, Guangzhong Sun, Xin Tong, and Jiaolong Yang. Moge-2: Accurate monocular geometry with metric scale and sharp details. In NeurIPS, 2025. 1, 3, 18
2025
-
[56]
Embodiedscan: A holistic multi-modal 3d perception suite towards embodied ai
Tai Wang, Xiaohan Mao, Chenming Zhu, Runsen Xu, Ruiyuan Lyu, Peisen Li, Xiao Chen, Wenwei Zhang, Kai Chen, Tianfan Xue, et al. Embodiedscan: A holistic multi-modal 3d perception suite towards embodied ai. InCVPR, 2024. 1
2024
-
[57]
Probabilistic and geometric depth: Detecting objects in perspective
Tai Wang, ZHU Xinge, Jiangmiao Pang, and Dahua Lin. Probabilistic and geometric depth: Detecting objects in perspective. InCoRL, 2022. 3
2022
-
[58]
N3d-vlm: Native 3d grounding enables accurate spatial reasoning in vision-language models
Yuxin Wang, Lei Ke, Boqiang Zhang, Tianyuan Qu, Hanxun Yu, Zhenpeng Huang, Meng Yu, Dan Xu, and Dong Yu. N3d-vlm: Native 3d grounding enables accurate spatial reasoning in vision-language models. arXiv preprint arXiv:2512.16561, 2025. 1, 3
2025
-
[59]
Ov-uni3detr: Towards unified open-vocabulary 3d object detection via cycle-modality propagation
Zhenyu Wang, Yali Li, Taichi Liu, Hengshuang Zhao, and Shengjin Wang. Ov-uni3detr: Towards unified open-vocabulary 3d object detection via cycle-modality propagation. InECCV, 2024. 3
2024
-
[60]
Monopgc: Monocular 3D object detection with pixel geometry contexts
Zizhang Wu, Yuanzhu Gan, Lei Wang, Guilian Chen, and Jian Pu. Monopgc: Monocular 3D object detection with pixel geometry contexts. InICRA, 2023. 3
2023
-
[61]
FD3D: Exploiting foreground depth map for feature-supervised monocular 3D object detection
Zizhang Wu, Yuanzhu Gan, Yunzhe Wu, Ruihao Wang, Xiaoquan Wang, and Jian Pu. FD3D: Exploiting foreground depth map for feature-supervised monocular 3D object detection. InAAAI, 2024. 3, 7
2024
-
[62]
Pointllm: Empower- ing large language models to understand point clouds
Runsen Xu, Xiaolong Wang, Tai Wang, Yilun Chen, Jiangmiao Pang, and Dahua Lin. Pointllm: Empower- ing large language models to understand point clouds. InECCV, 2024. 3
2024
-
[63]
MonoCD: Monocular 3D object detection with complementary depths
Longfei Yan, Pei Yan, Shengzhou Xiong, Xuanyu Xiang, and Yihua Tan. MonoCD: Monocular 3D object detection with complementary depths. InCVPR, 2024. 7 12
2024
-
[64]
Qwen3 technical report.arXiv preprint arXiv:2505.09388,
An Yang, Anfeng Li, Baosong Yang, et al. Qwen3 technical report.arXiv preprint arXiv:2505.09388,
-
[65]
Set-of-mark prompting unleashes extraordinary visual grounding in gpt-4v.arXiv preprint arXiv:2310.11441, 2023
Jianwei Yang, Hao Zhang, Feng Li, Xueyan Zou, Chunyuan Li, and Jianfeng Gao. Set-of-mark prompting unleashes extraordinary visual grounding in gpt-4v.arXiv preprint arXiv:2310.11441, 2023. 3
2023 arXiv
-
[66]
Lisa++: An improved baseline for reasoning segmentation with large language model.arXiv preprint arXiv:2312.17240,
Senqiao Yang, Tianyuan Qu, Xin Lai, Zhuotao Tian, Bohao Peng, Shu Liu, and Jiaya Jia. Lisa++: An improved baseline for reasoning segmentation with large language model.arXiv preprint arXiv:2312.17240,
-
[67]
3d-mood: Lifting 2d to 3d for monocular open-set object detection
Yung-Hsu Yang, Luigi Piccinelli, Mattia Segu, Siyuan Li, Rui Huang, Yuqian Fu, Marc Pollefeys, Hermann Blum, and Zuria Bauer. 3d-mood: Lifting 2d to 3d for monocular open-set object detection. InICCV,
-
[68]
Open vocabulary monocular 3d object detection
Jin Yao, Hao Gu, Xuweiyi Chen, Jiayun Wang, and Zezhou Cheng. Open vocabulary monocular 3d object detection. In3DV, 2026. 1, 3, 7, 23, 25
2026
-
[69]
Dwyer, and Zezhou Cheng
Jin Yao, Radowan Mahmud Redoy, Sebastian Elbaum, Matthew B. Dwyer, and Zezhou Cheng. Labelany3d: Label any object 3d in the wild. InNeurIPS, 2025. 1, 3, 8
2025
-
[70]
Center-based 3D object detection and tracking
Tianwei Yin, Xingyi Zhou, and Philipp Krahenbuhl. Center-based 3D object detection and tracking. In CVPR, 2021. 1
2021
-
[71]
Videorefer suite: Advancing spatial-temporal object understanding with video llm
Yuqian Yuan, Hang Zhang, Wentong Li, Zesen Cheng, Boqiang Zhang, Long Li, Xin Li, Deli Zhao, Wenqiao Zhang, Yueting Zhuang, et al. Videorefer suite: Advancing spatial-temporal object understanding with video llm. InCVPR, 2025. 3
2025
-
[72]
Detect anything 3d in the wild.arXiv preprint arXiv:2504.07958, 2025
Hanxue Zhang, Haoran Jiang, Qingsong Yao, Yanan Sun, Renrui Zhang, Hao Zhao, Hongyang Li, Hongzi Zhu, and Zetong Yang. Detect anything 3d in the wild.arXiv preprint arXiv:2504.07958, 2025. 1, 3, 7, 8, 25, 26, 27
2025
-
[73]
Monodetr: Depth-guided transformer for monocular 3D object detection
Renrui Zhang, Han Qiu, Tai Wang, Ziyu Guo, Ziteng Cui, Yu Qiao, Hongsheng Li, and Peng Gao. Monodetr: Depth-guided transformer for monocular 3D object detection. InICCV, 2023. 1, 3, 7
2023
-
[74]
Objects are different: Flexible monocular 3D object detection
Yunpeng Zhang, Jiwen Lu, and Jie Zhou. Objects are different: Flexible monocular 3D object detection. InCVPR, 2021. 3
2021
-
[75]
Unleashing the power of chain-of-prediction for monocular 3d object detection
Zhihao Zhang, Abhinav Kumar, Girish Chandar Ganesan, and Xiaoming Liu. Unleashing the power of chain-of-prediction for monocular 3d object detection. InCVPR, 2026. 3, 7, 8, 14, 24
2026
-
[76]
Detrs beat yolos on real-time object detection
Yian Zhao, Wenyu Lv, Shangliang Xu, Jinman Wei, Guanzhong Wang, Qingqing Dang, Yi Liu, and Jie Chen. Detrs beat yolos on real-time object detection. InCVPR, 2024. 3
2024
-
[77]
3d-vla: 3d vision-language-action generative world model.arXiv preprint arXiv:2403.09631, 2024
Haoyu Zhen, Xiaowen Qiu, Peihao Chen, Jincheng Yang, Xin Yan, Yilun Du, Yining Hong, and Chuang Gan. 3d-vla: 3d vision-language-action generative world model.arXiv preprint arXiv:2403.09631, 2024. 3
2024 arXiv
-
[78]
Monoatt: Online monocular 3D object detection with adaptive token transformer
Yunsong Zhou, Hongzi Zhu, Quan Liu, Shan Chang, and Minyi Guo. Monoatt: Online monocular 3D object detection with adaptive token transformer. InCVPR, 2023. 3
2023
-
[79]
Single image 3d object detection and pose estimation for grasping
Menglong Zhu, Konstantinos G Derpanis, Yinfei Yang, Samarth Brahmbhatt, Mabel Zhang, Cody Phillips, Matthieu Lecce, and Kostas Daniilidis. Single image 3d object detection and pose estimation for grasping. InICRA, 2014. 1
2014
-
[80]
move closer to camera
Brianna Zitkovich, Tianhe Yu, Sichun Xu, Peng Xu, Ted Xiao, Fei Xia, Jialin Wu, Paul Wohlhart, Stefan Welker, Ayzaan Wahid, et al. Rt-2: Vision-language-action models transfer web knowledge to robotic control. InCoRL, 2023. 3 13 Table 6:Comparison with non-VLM refinement mecha...
2023
-
[82]
16 Table 8: Oracle study under the Omni3D evaluation protocol
Render the current box b(t) as a wireframe on the input image to obtain I(t) = render(I, π(b(t);K)). 16 Table 8: Oracle study under the Omni3D evaluation protocol. Each row replaces one attribute of Cube R-CNN’s predictions with either the ground truth or the output of a depth...
-
[83]
Query the VLM with I(t) and a fixed instruction prompt; the model first emits a chain-of- thought reasoning trace, then the action tokens(a (t) d , a(t) m )
-
[84]
Compute the depth update ∆d(t) = dir(a(t) d )·mag(a (t) m , sobj) and update the box: d(t+1) = d(t) + ∆d(t), with (ˆx(t+1),ˆy(t+1)) re-derived along the camera ray to keep the box’s image location consistent with the new depth
-
[85]
We use Tmax = 2 in all experiments
Continue if a(t) d ∈ {⟨depth_closer⟩,⟨depth_farther⟩} ; terminate if a(t) d = ⟨depth_ok⟩ or if the maximum number of iterations Tmax is reached. We use Tmax = 2 in all experiments. The chain-of-thought reasoning trace is generated at every step but used only for action-token d...
-
[86]
Indoor Scenes
Selection Outdoor Scenes ... Indoor Scenes ... 3M Samples
-
[87]
Filtering Geometric Filter - Object truncation - Object occlusion VLM Semantic Filter - Object truncation - Object occlusion - Object visibility - Image quality 335K Samples
-
[88]
Perturbing Action Tokens <depth_ok> <depth_further> <depth_closer> 3M Samples Random Sampler <step_small> <step_medium> <step_large>
-
[89]
a black car viewed from behind on a street
CoT Reasoning Identify Object World Knowledge Recall Find Visual Evidence Make Decision 3M CoTs Figure 5:Data construction pipeline for training RefineAny3D.We collect diverse indoor and outdoor scenes (Selection), followed by geometric and VLM-based semantic filtering to remo...
-
[90]
Institutional review board (IRB) approvals or equivalent for research with human subjects Question: Does the paper describe potential risks incurred by study participants, whether such risks were disclosed to the subjects, and whether Institutional Review Board (IRB) approvals...
-
[2025]
2, 6, 7, 15, 19, 21, 25, 29
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.