REVIEW 4 major objections 5 minor 2 cited by
Language Driven Occupancy Prediction
T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper claims that text labels can be transferred from images to LiDAR points to voxels through a semantic transitive labeling pipeline, producing dense pseudo-labeled 3D language occupancy ground truth that trains open-vocabulary…
desk verdict A solid, well-ablated pseudo-labeling pipeline for open-vocabulary occupancy; the open-vocab claim is real but bounded by the LVLM teacher's vocabulary, and the paper should say so. 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 semantic transitive labeling pipeline carries the argument. It consists of vocabulary extraction with a large vision-language model using chain-of-thought prompts, pixel-to-text association via an open-vocabulary segmentation model that assigns each pixel the highest-cosine text embedding, LiDAR text pseudo-label assignment by projecting points onto the nearest visible camera image, and scene reconstruction that merges multi-frame point clouds with majority-voting voxelization to produce the final pseudo-labeled 3D language occupancy ground truth. A language autoencoder compresses the 512-dimensional CLIP embeddings into a 128-dimensional latent space so that the language head of the occupancy model can align to them efficiently.
What would settle it
Compare the pseudo-labeled ground truth class-by-class against the human-annotated Occ3D ground truth on validation scenes; if categories such as 'others' and 'other flat' remain near zero IoU even though the 2D teachers are known to segment them, the claim that the pipeline produces dense and accurate language occupancy ground truth is not supported. Alternatively, rerun the pipeline with an oracle vocabulary containing all 16 human-annotated classes: a large mIoU jump would confirm the LVLM vocabulary step, not the projection, is the binding constraint.
Extended reading notes
Core claim
The central discovery is that precise voxel-to-text correspondences can be generated without human 3D labels by using text labels, not raw image features, as the transfer medium. The pipeline first asks a large vision-language model to list the classes present in each surround image, merges these vocabularies across consecutive frames, and uses an open-vocabulary segmentation model to assign every pixel a text label by cosine similarity. LiDAR points are then projected onto the calibrated images, selecting the visible camera with the smallest depth, and each point inherits the pixel's text label. Multi-frame pseudo-labeled point clouds are transformed into a shared world frame and voxelized with majority voting, so each occupied voxel receives the most frequent text label among its points. This produces dense and fine-grained 3D language occupancy ground truth, and the paper shows that models trained on it reach higher zero-shot mIoU on Occ3D-nuScenes than prior methods that rely on image-feature intermediates or voxel-based model-view projection.
Load-bearing premise
The whole pipeline assumes the 2D teacher stack — the vision-language model that lists classes and the open-vocabulary segmenter that labels pixels — correctly enumerates and segments every class that matters in each image; if a class is missed or mislabeled there, no later LiDAR projection or voting step can recover it.
Editorial extensions
If this is right
- Most existing supervised occupancy models can be adapted by replacing the prediction head with a geometry head and a language head; the paper demonstrates this on three backbones spanning both forward and backward 2D-to-3D projection.
- Using text labels instead of image features as the transfer medium improves pseudo-ground-truth mIoU from 22.12 to 25.53 in the paper's ablation, and the improvement carries through to all downstream occupancy models.
- Majority-voting voxelization over merged multi-frame LiDAR is more robust than nearest-point voxelization and much better than voxel-based model-view projection, which drops pseudo-ground-truth mIoU to 19.55.
- Training on the generated ground truth transfers to open-vocabulary evaluation: with only four base classes seen, LOcc-BEVDet4D reaches 26.91 mIoU on Occ3D-nuScenes, including competitive IoUs on unseen classes.
- The choice of open-vocabulary segmentation model is not critical: ODISE, CAT-Seg, and SAN all produce working pipelines, with the best full model reaching 23.84 mIoU.
Reading between the lines
- The paper leaves implicit that the LVLM vocabulary step sets the ceiling on class coverage: the near-zero IoU for 'others' and 'other flat' is consistent with the teacher omitting or misnaming those classes, not with projection or voting failures.
- A direct extension would be to replace the single LVLM vocabulary list with an ensemble of vision-language models or an open-vocabulary detector; the paper's ablation design already isolates this gain.
- Because the geometry reconstruction and majority-voting steps do not depend on text, the same transitive pipeline could transfer other per-pixel labels (instance identities, attributes, or hand-annotated 2D masks) into dense 3D supervision.
- The language autoencoder compresses CLIP embeddings to 128 dimensions; the fidelity of that compression is a tunable bottleneck that the paper does not sweep, so larger latent sizes are a natural next experiment.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces LOcc, a framework for open-vocabulary 3D occupancy prediction. It constructs pseudo-labeled 3D language ground truth by using Qwen-VL to extract per-frame vocabularies from surround images, assigning pixel-level text labels with an open-vocabulary segmentation model (SAN), transferring those labels to LiDAR points via projection with smallest-depth selection, and then merging multiple frames with majority-voting voxelization. Standard occupancy backbones (BEVFormer, BEVDet, BEVDet4D) are trained with a geometry head and a language head that regresses compressed CLIP embeddings, and test-time semantics are obtained by cosine similarity against arbitrary text features. On Occ3D-nuScenes, LOcc reports mIoU gains over POP-3D and VEON in the zero-shot table, and ablations show the consecutive-frame vocabulary and majority-voting voxelization improve both pseudo-GT quality and downstream mIoU.
Significance. If the claims are taken as stated, the paper makes a useful contribution: it shows that text-based pseudo-labels from an LVLM/OV-Seg stack, transferred through LiDAR point clouds, provide denser and more semantically consistent 3D supervision than image-feature intermediates (Table 2, settings a vs c) and than voxel-based model-view projection (settings c vs e), across three different backbones. The systematic ablations, the pseudo-GT quality comparison in Table 3, and the experiments with three OV-Seg models in Table 5 are strengths that support the core pipeline. However, the 'open-vocabulary' framing is currently broader than the evidence: the vocabulary is inherited from the LVLM/OV-Seg stack, and Table 4 contains no baseline comparisons under the same protocol. The core derivation appears sound, but the paper needs to qualify its claims and supply missing protocol details before publication.
major comments (4)
- [§4.2, Table 4] The open-vocabulary protocol is underspecified to the point of ambiguity. The text defines the open-vocabulary setting as training on a subset of classes ('bicycle, motorcycle, traffic cone, sidewalk') and evaluating on seen and unseen classes, but Table 4 reports high IoUs on classes such as car (33.88 for LOcc-BEVFormer) and vegetation (29.58) that are classified as 'novel' under this split. If the pseudo-labeled ground truth generated in Section 3.1 contains these classes, then they are present in training and the evaluation is not open-vocabulary as defined; if they were removed from the pseudo-GT during training, the removal procedure is not described. The authors should state explicitly which classes appear in the pseudo-labeled training set for Table 4 and compare against POP-3D and VEON under the same protocol.
- [§3.1, Eq. (1); Table 1; Table 3] The vocabulary generated by Qwen-VL is an upper bound on what the pseudo-labeling pipeline can supervise, because Eq. (1) assigns every pixel the argmax over T_k only. A class omitted from T_k never receives a positive training signal in Eq. (5), so the language head cannot learn to output it at test time. The zero IoU for 'others' and the near-zero IoU for 'other flat' across all LOcc variants in Table 1, together with the 0.00/0.40 values in the pseudo-GT in Table 3, indicate that this is not merely theoretical. The paper should explicitly state that 'open-vocabulary' here means 'any class that the LVLM enumerates and the OV-Seg model can segment,' and should discuss how this bounds the practical scope of Table 4's novel-class generalization.
- [§3.1, Scene Reconstruction] The method is described as using unlabeled image-LiDAR data, but the reconstruction step states that 'we distinguish moving and static objects by leveraging the geometric information of 3D bounding boxes.' The origin of those bounding boxes is never stated. If they are nuScenes human-annotated 3D boxes, the pipeline is not unlabeled and its comparison with POP-3D and VEON needs to be reconsidered; if they come from an off-the-shelf detector, that detector should be identified and its effect on the pseudo-GT quality should be assessed. This is a load-bearing point for the claim of diminishing labor-intensive human annotation.
- [Table 4, §4.6] The open-vocabulary table reports only the proposed LOcc models, with no POP-3D or VEON results run under the same base/novel class split. Without those baseline numbers, the paper cannot support the conclusion that LOcc 'outperforms previous state-of-the-art zero-shot occupancy prediction approaches' in the open-vocabulary setting; the claims in Section 4.6 are descriptive rather than comparative. Please add the missing comparisons or soften the corresponding claim.
minor comments (5)
- [§4.2] The definition of the zero-shot setting ('none of the ground truth classes are seen during training') is inconsistent with Table 1, where LOcc models obtain high IoUs on classes such as car and bus without any human semantic labels; clarify whether 'seen' refers to manual labels or to pseudo-labels.
- [§3.3, Eq. (7)] It is unclear whether, at evaluation time, the text features are passed through the autoencoder before computing cosine similarity with the predicted language volume; if they are not, the training and evaluation feature spaces are not aligned and the evaluation metric may be inconsistent with the training loss.
- [§4.3] Hyperparameters such as the number of consecutive frames K and the exact vocabulary merging procedure for the temporal sequence are not specified; please provide these details for reproducibility.
- [Throughout] Several wording and typographical issues remain, including 'generablizability' in the contributions list and 'V oting voxelization' in the Table 2 header.
- [Table 5] No multi-seed variance is reported; given the small margins among the OV-Seg ablations (e.g., 20.68 vs 20.29 for BEVDet), error bars or additional seeds would strengthen the conclusions.
Circularity Check
The 'open-vocabulary' novel-class evaluation re-labels pseudo-GT classes as unseen: classes enumerated by the LVLM are present in the training labels, so their test IoU is not evidence of zero-shot generalization.
-
self definitional
[Sec. 4.2 evaluation settings vs Sec. 3.1 (Eq. 1), Sec. 3.2 (Eq. 5), and Sec. 4.6]
"In contrast, the open-vocabulary setting assumes that only a subset of classes is available during training, and the model is expected to recognize both seen and unseen classes during evaluation. ... We use bicycle, motorcycle, traffic cone, and sidewalk as base classes, while treating the remaining categories as novel classes."
The pseudo-GT pipeline in Sec. 3.1 never filters the LVLM vocabulary to the four base classes. Eq. 1 labels every pixel by argmax over the full extracted set T_k (Fig. 3 lists car, pedestrian, truck, sidewalk, terrain, etc.), and Eq. 5 trains the language head on every occupied voxel of this pseudo-GT. Thus the classes called 'novel' in Sec. 4.6 are present in the training labels by construction; their positive IoU in Table 4 measures recognition of seen classes, not generalization to unseen ones. Consistent with this, the classes absent from the pseudo-GT ('others', 'other flat') score 0.00 in Table 4. The paper's own definition of the open-vocabulary setting is therefore contradicted by its training pipeline.
full rationale
The core LOcc pipeline is not circular in the fitted-parameter sense: it generates pseudo-GT from an external 2D teacher (Qwen-VL + SAN), trains standard occupancy backbones, and evaluates against human-annotated Occ3D labels, so the headline zero-shot mIoU comparisons in Table 1 are externally grounded. There is no self-citation chain or imported uniqueness theorem, and the CLIP-space alignment in Eqs. 5-6 is a conventional distillation objective rather than a tautology. However, the paper's open-vocabulary experiment (Sec. 4.6) is internally inconsistent with its own Sec. 4.2 definition: because Sec. 3.1 does not restrict the LVLM vocabulary to the declared base classes, the 'novel' classes are available in the pseudo-labeled training data. Their nonzero IoUs therefore do not demonstrate open-vocabulary generalization, and the truly absent classes score zero. This is a partial, experiment-level circularity; the external zero-shot benchmark remains independent.
Assumptions & free parameters
free parameters (3)
- language autoencoder latent dimension =
128
- number of consecutive frames merged K =
not specified
- loss weights (Lce and Lcos) =
1 and 1
assumptions (5)
- domain assumption 2D open-vocabulary segmentation and LVLM vocabulary extraction provide reliable pixel-to-text labels for outdoor driving scenes.
- domain assumption The minimal-depth camera selection in Eq. 3 correctly identifies the visible image for each LiDAR point, resolving occlusion.
- domain assumption nuScenes 3D bounding boxes are available and accurate enough to separate moving and static objects during scene reconstruction.
- domain assumption CLIP text-embedding space is an appropriate semantic space for both supervision and evaluation.
- domain assumption Majority-voting voxelization and multi-frame merging reduce segmentation noise without introducing harmful temporal or ego-motion misalignment.
Cite this review
Pith. "Pith review of Language Driven Occupancy Prediction." pith.science (2026). https://pith.science/paper/6H6T7PMG
@misc{pith2026241116072,
author = {Pith},
title = {Pith review of: Language Driven Occupancy Prediction},
year = {2026},
howpublished = {\url{https://pith.science/paper/6H6T7PMG}},
note = {Machine review of arXiv:2411.16072}
}
read the original abstract
We introduce LOcc, an effective and generalizable framework for open-vocabulary occupancy (OVO) prediction. Previous approaches typically supervise the networks through coarse voxel-to-text correspondences via image features as intermediates or noisy and sparse correspondences from voxel-based model-view projections. To alleviate the inaccurate supervision, we propose a semantic transitive labeling pipeline to generate dense and fine-grained 3D language occupancy ground truth. Our pipeline presents a feasible way to dig into the valuable semantic information of images, transferring text labels from images to LiDAR point clouds and ultimately to voxels, to establish precise voxel-to-text correspondences. By replacing the original prediction head of supervised occupancy models with a geometry head for binary occupancy states and a language head for language features, LOcc effectively uses the generated language ground truth to guide the learning of 3D language volume. Through extensive experiments, we demonstrate that our transitive semantic labeling pipeline can produce more accurate pseudo-labeled ground truth, diminishing labor-intensive human annotations. Additionally, we validate LOcc across various architectures, where all models consistently outperform state-of-the-art zero-shot occupancy prediction approaches on the Occ3D-nuScenes dataset.
Figures
Forward citations
Cited by 2 Pith papers
-
VISA: VLM-Guided Instance Semantic Auditing for 3D Occupancy World Models
VISA improves closed-set 3D occupancy mIoU on nuScenes by using VLM instance audits as reliability-weighted semantic supervisors during training of existing world models.
-
VoxDet: Rethinking 3D Semantic Occupancy Prediction as Dense Object Detection
VoxDet reformulates 3D semantic occupancy prediction as dense object detection by deriving instance-boundary offsets from voxel class labels, and reports new state-of-the-art results on camera and LiDAR benchmarks.
Reference graph
Works this paper leans on
-
[1]
Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xi- aodong Deng, Yang Fan, and et al. Qwen technical report. arXiv preprint arXiv:2309.16609, 2023. 2, 3
arXiv 2023
-
[2]
Jinze Bai, Shuai Bai, Shusheng Yang, Shijie Wang, Sinan Tan, Peng Wang, Junyang Lin, Chang Zhou, and Jingren Zhou. Qwen-vl: A versatile vision-language model for un- derstanding, localization, text reading, and beyond. arXiv preprint arXiv:2308.12966, 2023. 2, 3, 4
arXiv 2023
-
[3]
Se- mantickitti: A dataset for semantic scene understanding of lidar sequences
Jens Behley, Martin Garbade, Andres Milioto, Jan Quen- zel, Sven Behnke, Cyrill Stachniss, and J ¨urgen Gall. Se- mantickitti: A dataset for semantic scene understanding of lidar sequences. In Proceedings of the IEEE/CVF Interna- tional Conference on Computer Vision , pages 9297–9307,
-
[4]
Simon Boeder, Fabian Gigengack, and Benjamin Risse. Lan- gocc: Self-supervised open vocabulary occupancy estima- tion via volume rendering.arXiv preprint arXiv:2407.17310,
-
[5]
nuscenes: A multi- modal dataset for autonomous driving
Holger Caesar, Varun Bankiti, Alex H Lang, Sourabh V ora, Venice Erin Liong, Qiang Xu, Anush Krishnan, Yu Pan, Gi- ancarlo Baldan, and Oscar Beijbom. nuscenes: A multi- modal dataset for autonomous driving. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11621–11631, 2020. 5
work page 2020
-
[6]
Monoscene: Monoc- ular 3d semantic scene completion
Anh-Quan Cao and Raoul De Charette. Monoscene: Monoc- ular 3d semantic scene completion. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 3991–4001, 2022. 2, 6
work page 2022
-
[7]
Yolo-world: Real-time open-vocabulary object detection
Tianheng Cheng, Lin Song, Yixiao Ge, Wenyu Liu, Xing- gang Wang, and Ying Shan. Yolo-world: Real-time open-vocabulary object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 16901–16911, 2024. 2
2024
-
[8]
Cat- seg: Cost aggregation for open-vocabulary semantic seg- mentation
Seokju Cho, Heeseong Shin, Sunghwan Hong, Anurag Arnab, Paul Hongsuck Seo, and Seungryong Kim. Cat- seg: Cost aggregation for open-vocabulary semantic seg- mentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 4113– 4123, 2024. 2, 3, 8
work page 2024
Show all 57 references
-
[9]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceed- ings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 770–778, 2016. 5, 6
2016
-
[10]
Planning-oriented autonomous driving
Yihan Hu, Jiazhi Yang, Li Chen, Keyu Li, Chonghao Sima, Xizhou Zhu, Siqi Chai, Senyao Du, Tianwei Lin, Wenhai Wang, et al. Planning-oriented autonomous driving. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 17853–17862, 2023. 1
2023
-
[11]
Bevdet4d: Exploit tempo- ral cues in multi-camera 3d object detection
Junjie Huang and Guan Huang. Bevdet4d: Exploit tempo- ral cues in multi-camera 3d object detection. arXiv preprint arXiv:2203.17054, 2022. 2, 5, 6, 7
2022 arXiv
-
[12]
Bevdet: High-performance multi-camera 3d object de- tection in bird-eye-view
Junjie Huang, Guan Huang, Zheng Zhu, Yun Ye, and Dalong Du. Bevdet: High-performance multi-camera 3d object de- tection in bird-eye-view. arXiv preprint arXiv:2112.11790,
-
[13]
Tri-perspective view for vision-based 3d semantic occupancy prediction
Yuanhui Huang, Wenzhao Zheng, Yunpeng Zhang, Jie Zhou, and Jiwen Lu. Tri-perspective view for vision-based 3d semantic occupancy prediction. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 9223–9232, 2023. 2, 6
2023
-
[14]
Selfocc: Self-supervised vision-based 3d oc- cupancy prediction
Yuanhui Huang, Wenzhao Zheng, Borui Zhang, Jie Zhou, and Jiwen Lu. Selfocc: Self-supervised vision-based 3d oc- cupancy prediction. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 19946–19956, 2024. 6, 7
2024
-
[15]
Tod3cap: Towards 3d dense captioning in outdoor scenes
Bu Jin, Yupeng Zheng, Pengfei Li, Weize Li, Yuhang Zheng, Sujie Hu, Xinyu Liu, Jinwei Zhu, Zhijie Yan, Haiyang Sun, et al. Tod3cap: Towards 3d dense captioning in outdoor scenes. In Proceedings of the European Conference on Com- puter Vision, pages 367–384, 2025. 1
2025
-
[16]
Lerf: Language embedded radiance fields
Justin Kerr, Chung Min Kim, Ken Goldberg, Angjoo Kanazawa, and Matthew Tancik. Lerf: Language embedded radiance fields. In Proceedings of the IEEE/CVF Interna- tional Conference on Computer Vision, pages 19729–19739,
-
[17]
Segment any- thing
Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer White- head, Alexander C Berg, Wan-Yen Lo, et al. Segment any- thing. In Proceedings of the IEEE/CVF International Con- ference on Computer Vision, pages 4015–4026, 2023. 3, 8
2023
-
[18]
Language-driven semantic seg- mentation
Boyi Li, Kilian Q Weinberger, Serge Belongie, Vladlen Koltun, and Rene Ranftl. Language-driven semantic seg- mentation. In International Conference on Learning Rep- resentations, 2023. 1, 2, 3, 7
2023
-
[19]
Dfa3d: 3d deformable attention for 2d-to-3d feature lifting
Hongyang Li, Hao Zhang, Zhaoyang Zeng, Shilong Liu, Feng Li, Tianhe Ren, and Lei Zhang. Dfa3d: 3d deformable attention for 2d-to-3d feature lifting. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 6684–6693, 2023. 2
2023
-
[20]
Ovtrack: Open-vocabulary mul- tiple object tracking
Siyuan Li, Tobias Fischer, Lei Ke, Henghui Ding, Martin Danelljan, and Fisher Yu. Ovtrack: Open-vocabulary mul- tiple object tracking. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern recognition , pages 5567–5577, 2023. 2
2023
-
[21]
V oxdet: Rethink- ing 3d semantic occupancy prediction as dense object detec- tion
Wuyang Li, Zhu Yu, and Alexandre Alahi. V oxdet: Rethink- ing 3d semantic occupancy prediction as dense object detec- tion. arXiv preprint arXiv:2506.04623, 2025. 2
2025 arXiv
-
[22]
Choy, Chaowei Xiao, Jos ´e M
Yiming Li, Zhiding Yu, Christopher B. Choy, Chaowei Xiao, Jos ´e M. ´Alvarez, Sanja Fidler, Chen Feng, and An- ima Anandkumar. V oxformer: Sparse voxel transformer for camera-based 3d semantic scene completion. In Proceed- ings of the IEEE/CVF Conference on Computer Vision and...
2023
-
[23]
Bevformer: Learning bird’s-eye-view representation from multi-camera images via spatiotemporal transformers
Zhiqi Li, Wenhai Wang, Hongyang Li, Enze Xie, Chong- hao Sima, Tong Lu, Yu Qiao, and Jifeng Dai. Bevformer: Learning bird’s-eye-view representation from multi-camera images via spatiotemporal transformers. In Proceedings of the European Conference on Computer Vision , pages 1–18,
-
[24]
Visual instruction tuning
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. Advances in Neural Information Processing Systems, 36, 2024. 2, 3
2024
-
[25]
Decoupled weight decay regularization
I Loshchilov. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. 7
2017 arXiv
-
[26]
Cotr: Compact occupancy transformer for vision-based 3d occupancy prediction
Qihang Ma, Xin Tan, Yanyun Qu, Lizhuang Ma, Zhizhong Zhang, and Yuan Xie. Cotr: Compact occupancy transformer for vision-based 3d occupancy prediction. arXiv preprint arXiv:2312.01919, 2023. 1, 2
2023 arXiv
-
[27]
Renderocc: Vision-centric 3d occupancy prediction with 2d rendering supervision
Mingjie Pan, Jiaming Liu, Renrui Zhang, Peixiang Huang, Xiaoqi Li, Hongwei Xie, Bing Wang, Li Liu, and Shanghang Zhang. Renderocc: Vision-centric 3d occupancy prediction with 2d rendering supervision. In IEEE International Con- ference on Robotics and Automation , pages 12404–12411,
-
[28]
Openscene: 3d scene understanding with open vocabularies
Songyou Peng, Kyle Genova, Chiyu Jiang, Andrea Tagliasacchi, Marc Pollefeys, Thomas Funkhouser, et al. Openscene: 3d scene understanding with open vocabularies. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 815–824, 2023. 2
2023
-
[29]
Lift, splat, shoot: Encoding images from arbitrary camera rigs by implicitly unproject- ing to 3d
Jonah Philion and Sanja Fidler. Lift, splat, shoot: Encoding images from arbitrary camera rigs by implicitly unproject- ing to 3d. In Proceedings of the European Conference on Computer Vision, pages 194–210, 2020. 2, 5
2020
-
[30]
Langsplat: 3d language gaussian splatting
Minghan Qin, Wanhua Li, Jiawei Zhou, Haoqian Wang, and Hanspeter Pfister. Langsplat: 3d language gaussian splatting. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 20051–20060, 2024. 3
2024
-
[31]
Learn- ing transferable visual models from natural language super- vision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learn- ing transferable visual models from natural language super- vision. In Proceedings of the International Conference ...
2021
-
[32]
Sam 2: Segment anything in images and videos
Nikhila Ravi, Valentin Gabeur, Yuan-Ting Hu, Ronghang Hu, Chaitanya Ryali, Tengyu Ma, Haitham Khedr, Roman R¨adle, Chloe Rolland, Laura Gustafson, et al. Sam 2: Segment anything in images and videos. arXiv preprint arXiv:2408.00714, 2024. 8
2024 arXiv
-
[33]
Occ3d: A large-scale 3d occupancy prediction benchmark for autonomous driving
Xiaoyu Tian, Tao Jiang, Longfei Yun, Yucheng Mao, Huitong Yang, Yue Wang, Yilun Wang, and Hang Zhao. Occ3d: A large-scale 3d occupancy prediction benchmark for autonomous driving. In Advances in Neural Information Processing Systems, pages 64318–64330, 2023. 1, 2, 5, 6, 8
2023
-
[34]
Scene as occupancy
Wenwen Tong, Chonghao Sima, Tai Wang, Li Chen, Silei Wu, Hanming Deng, Yi Gu, Lewei Lu, Ping Luo, Dahua Lin, et al. Scene as occupancy. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 8406– 8415, 2023. 1, 2
2023
-
[35]
Pop-3d: Open-vocabulary 3d occupancy prediction from im- ages
Antonin V obecky, Oriane Sim ´eoni, David Hurych, Spyri- don Gidaris, Andrei Bursuc, Patrick P ´erez, and Josef Sivic. Pop-3d: Open-vocabulary 3d occupancy prediction from im- ages. In Advances in Neural Information Processing Sys- tems, 2024. 1, 2, 3, 6, 7
2024
-
[36]
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. In Proceed- ings of the IEEE/CVF Conference on Computer Vision and Patt...
2024
-
[37]
Openoccupancy: A large scale benchmark for surrounding semantic occupancy perception
Xiaofeng Wang, Zheng Zhu, Wenbo Xu, Yunpeng Zhang, Yi Wei, Xu Chi, Yun Ye, Dalong Du, Jiwen Lu, and Xin- gang Wang. Openoccupancy: A large scale benchmark for surrounding semantic occupancy perception. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sio...
2023
-
[38]
Chain-of-thought prompting elicits reasoning in large lan- guage models
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. Chain-of-thought prompting elicits reasoning in large lan- guage models. Advances in Neural Information Processing Systems, 35:24824–24837, 2022. 3
2022
-
[39]
Surroundocc: Multi-camera 3d occu- pancy prediction for autonomous driving
Yi Wei, Linqing Zhao, Wenzhao Zheng, Zheng Zhu, Jie Zhou, and Jiwen Lu. Surroundocc: Multi-camera 3d occu- pancy prediction for autonomous driving. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 21729–21740, 2023. 1, 2
2023
-
[40]
Deep height decoupling for pre- cise vision-based 3d occupancy prediction
Yuan Wu, Zhiqiang Yan, Zhengxue Wang, Xiang Li, Le Hui, and Jian Yang. Deep height decoupling for pre- cise vision-based 3d occupancy prediction. arXiv preprint arXiv:2409.07972, 2024. 2
2024 arXiv
-
[41]
See through the dark: Learning illumination-affined representations for nighttime occupancy prediction
Yuan Wu, Zhiqiang Yan, Yigong Zhang, Xiang Li, and Jian Yang. See through the dark: Learning illumination-affined representations for nighttime occupancy prediction. arXiv preprint arXiv:2505.20641, 2025. 2
2025
-
[42]
A survey on occupancy perception for au- tonomous driving: The information fusion perspective.arXiv preprint arXiv:2405.05173, 2024
Huaiyuan Xu, Junliang Chen, Shiyu Meng, Yi Wang, and Lap-Pui Chau. A survey on occupancy perception for au- tonomous driving: The information fusion perspective.arXiv preprint arXiv:2405.05173, 2024. 1
2024 arXiv
-
[43]
Open-vocabulary panop- tic segmentation with text-to-image diffusion models
Jiarui Xu, Sifei Liu, Arash Vahdat, Wonmin Byeon, Xiao- long Wang, and Shalini De Mello. Open-vocabulary panop- tic segmentation with text-to-image diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 2955–2966, 2023. 2, 3, 8
2023
-
[44]
Side adapter network for open-vocabulary semantic segmentation
Mengde Xu, Zheng Zhang, Fangyun Wei, Han Hu, and Xi- ang Bai. Side adapter network for open-vocabulary semantic segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 2945– 2954, 2023. 2, 3, 7, 8
2023
-
[45]
Second: Sparsely embed- ded convolutional detection
Yan Yan, Yuxing Mao, and Bo Li. Second: Sparsely embed- ded convolutional detection. Sensors, 18(10):3337, 2018. 5
2018
-
[46]
Tri- perspective view decomposition for geometry-aware depth completion
Zhiqiang Yan, Yuankai Lin, Kun Wang, Yupeng Zheng, Yufei Wang, Zhenyu Zhang, Jun Li, and Jian Yang. Tri- perspective view decomposition for geometry-aware depth completion. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 4874– 4884, 2024. 2
2024
-
[47]
Bevformer v2: Adapting modern image backbones to bird’s-eye-view recognition via perspective su- pervision
Chenyu Yang, Yuntao Chen, Hao Tian, Chenxin Tao, Xizhou Zhu, Zhaoxiang Zhang, Gao Huang, Hongyang Li, Yu Qiao, Lewei Lu, et al. Bevformer v2: Adapting modern image backbones to bird’s-eye-view recognition via perspective su- pervision. In Proceedings of the IEEE/CVF Conference...
2023
-
[48]
Depth anything: Unleashing the power of large-scale unlabeled data
Lihe Yang, Bingyi Kang, Zilong Huang, Xiaogang Xu, Jiashi Feng, and Hengshuang Zhao. Depth anything: Unleashing the power of large-scale unlabeled data. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10371–10381, 2024. 8
2024
-
[49]
Cvt-occ: Cost volume temporal fusion for 3d oc- cupancy prediction
Zhangchen Ye, Tao Jiang, Chenfeng Xu, Yiming Li, and Hang Zhao. Cvt-occ: Cost volume temporal fusion for 3d oc- cupancy prediction. arXiv preprint arXiv:2409.13430, 2024. 2, 6
2024 arXiv
-
[50]
Aggregating feature point cloud for depth completion
Zhu Yu, Zehua Sheng, Zili Zhou, Lun Luo, Si-Yuan Cao, Hong Gu, Huaqi Zhang, and Hui-Liang Shen. Aggregating feature point cloud for depth completion. In Proceedings of the IEEE/CVF international conference on computer vision, pages 8732–8743, 2023. 2
2023
-
[51]
Flashocc: Fast and memory-efficient occupancy prediction via channel-to-height plugin
Zichen Yu, Changyong Shu, Jiajun Deng, Kangjie Lu, Zong- dai Liu, Jiangyong Yu, Dawei Yang, Hui Li, and Yan Chen. Flashocc: Fast and memory-efficient occupancy prediction via channel-to-height plugin. arXiv preprint arXiv:2311.12058, 2023. 2
2023 arXiv
-
[52]
Context and geometry aware voxel transformer for semantic scene completion
Zhu Yu, Runmin Zhang, Jiacheng Ying, Junchen Yu, Xiaohai Hu, Lun Luo, Si-Yuan Cao, and Hui-Liang Shen. Context and geometry aware voxel transformer for semantic scene completion. In Advances in Neural Information Processing Systems, 2024. 2
2024
-
[53]
Open-vocabulary object detection using captions
Alireza Zareian, Kevin Dela Rosa, Derek Hao Hu, and Shih- Fu Chang. Open-vocabulary object detection using captions. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 14393–14402, 2021. 2
2021
-
[54]
Occnerf: Self- supervised multi-camera occupancy prediction with neural radiance fields
Chubin Zhang, Juncheng Yan, Yi Wei, Jiaxin Li, Li Liu, Yansong Tang, Yueqi Duan, and Jiwen Lu. Occnerf: Self- supervised multi-camera occupancy prediction with neural radiance fields. arXiv preprint arXiv:2312.09243, 2023. 6, 7
2023 arXiv
-
[55]
Occformer: Dual-path transformer for vision-based 3d semantic occu- pancy prediction
Yunpeng Zhang, Zheng Zhu, and Dalong Du. Occformer: Dual-path transformer for vision-based 3d semantic occu- pancy prediction. In Proceedings of the IEEE/CVF Inter- national Conference on Computer Vision, pages 9433–9443,
-
[56]
Veon: V ocabulary-enhanced occupancy prediction
Jilai Zheng, Pin Tang, Zhongdao Wang, Guoqing Wang, Xiangxuan Ren, Bailan Feng, and Chao Ma. Veon: V ocabulary-enhanced occupancy prediction. arXiv preprint arXiv:2407.12294, 2024. 1, 2, 3, 4, 6, 7, 8
2024 arXiv
-
[57]
Monoocc: Digging into monocular semantic occu- pancy prediction
Yupeng Zheng, Xiang Li, Pengfei Li, Yuhang Zheng, Bu Jin, Chengliang Zhong, Xiaoxiao Long, Hao Zhao, and Qichao Zhang. Monoocc: Digging into monocular semantic occu- pancy prediction. arXiv preprint arXiv:2403.08766 , 2024. 2
2024 arXiv
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.