REVIEW 3 major objections 6 minor 64 references
Collaborative Perceiver: Elevating Vision-based 3D Object Detection via Local Density-Aware Spatial Occupancy
T0 review · 3 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read The paper claims that training a camera-only BEV 3D detector jointly with local-density-aware 3D occupancy prediction improves both tasks, reaching 49.5% mAP and 59.2% NDS on the nuScenes test set and outperforming prior vision-based…
desk verdict Plausible method, but the central numbers don't line up: the same base config is 53.5/42.2 in one table and 52.6/41.1 in another, so the claimed gains are not yet reliable. 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 load-bearing mechanism is the local-density-aware dense occupancy (LDO) ground-truth generation pipeline. It accumulates LiDAR from multiple frames, separates static and dynamic points, aligns static points with ego poses and dynamic points with ground-truth bounding-box indices, voxelizes the merged cloud, and computes a per-voxel density weight $W_d^{ki} = P_d^{ki} / \sum_{j} P_d^{kj}$ that reweights the occupancy loss. On the feature side, VHS voxel-pools lifted 3D features over height intervals of interest derived from occupied voxels, and CFF fuses the resulting local features $f_l$ with height-collapsed global features $f_g$ through an adaptive scalar $\alpha = \sigma(\mathrm{MLP}(\mathrm{pool}(\mathrm{conv}(f_l))) + \mathrm{MLP}(\mathrm{pool}(\mathrm{conv}(f_g))))$, producing unified BEV features $f_u = \alpha \cdot \mathrm{conv}(f_g) + (1-\alpha) \cdot \mathrm{conv}(f_l)$, which are then re-elevated to voxel space by a channel-to-height transform.
What would settle it
Train CoP with the same settings but deliberately perturb the LDO generation: randomly reassign bounding-box indices or add moderate Gaussian noise to ego poses when aligning multi-frame LiDAR, then measure mAP/NDS on nuScenes validation. If performance does not drop, the claim that accurate density-aware occupancy alignment drives the detection gains would be falsified; if it drops sharply, the alignment assumption is confirmed as load-bearing.
Extended reading notes
Core claim
CoP's central claim is that multi-task learning with occupancy prediction elevates vision-only BEV detection rather than merely adding a head. The paper attributes the gain to three components: local-density-aware dense occupancy (LDO) labels, which encode per-voxel point-density variations; voxel-height-guided sampling (VHS), which pools lifted features over height intervals of interest; and global-local collaborative feature fusion (CFF), which adaptively selects between pooled global and locally sampled features. On nuScenes test with ResNet-101, CoP reports 49.5% mAP and 59.2% NDS, and on validation with ResNet-50 it reports 42.2% mAP and 53.5% NDS. Ablations isolate the components: replacing sparse occupancy with dense occupancy adds +1.5 mAP, adding local-density weighting adds +0.4 mAP, adding VHS adds +1.4 mAP, and the full fusion reaches 41.1% mAP versus 37.3% for the sparse baseline. The LDO labels also raise semantic scene completion mIoU of two existing occupancy models by +0.3 and +0.4 points.
Load-bearing premise
The load-bearing assumption is that the automatically generated dense occupancy labels are accurate enough to supervise shared features: dynamic objects are aligned by ground-truth bounding-box indices and static points by ego poses, and the paper provides no quantitative check of those labels before training the detector.
Editorial extensions
If this is right
- If CoP is right, occupancy prediction can be used as an offline auxiliary supervision for camera-only 3D detection, so the LiDAR used to build labels is not needed at inference.
- The same LDO labels transfer to other occupancy models, so dense occupancy training can be improved without changing model architecture or inference cost.
- Height-aware local sampling should reduce detection errors on objects with different vertical extents, matching the reported drops in translation and velocity errors when local pooling is used.
- Because the framework produces both boxes and voxel semantics from one BEV representation, a single model can serve detection and occupancy-based downstream tasks such as drivable-surface reasoning.
- On a standard validation split with ResNet-50, CoP exceeds the cited prior method by +2.2 mAP and +1.9 NDS, suggesting the gains are not dependent on a large backbone.
Reading between the lines
- A testable extension the paper does not run: corrupting the LDO labels by randomly reassigning dynamic-object tracklets or adding pose noise should degrade mAP proportionally to the paper's reliance on alignment; if it does not, the alignment part of the pipeline is not the source of gain.
- The reported +0.3 and +0.4 mIoU gains on existing occupancy models are small; a natural class-wise analysis would show whether the density weighting mostly helps sparse objects such as pedestrians and traffic cones rather than large surfaces.
- Since LDO is generated offline from annotations, the method's benefit likely depends on datasets with consistent instance IDs; on unlabeled or noisy-annotation data, pseudo-label-based versions would be a natural next step, but the paper does not test them.
- The CFF fusion can be read as a learned routing between global and local features; a possible extension would make the routing per class or per height layer, which the paper leaves unexplored.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Collaborative Perceiver (CoP), a multi-task learning framework for camera-based 3D object detection that jointly predicts 3D bounding boxes and a local-density-aware semantic occupancy map. The method consists of an offline LDO ground-truth generation pipeline that aggregates multi-frame LiDAR by ego-pose for static content and by instance index for dynamic objects, a voxel-height-guided sampling (VHS) module that extracts local features from voxel height intervals, and a global-local collaborative feature fusion (CFF) module that combines these local features with global BEV features. On nuScenes, the paper reports 49.5% mAP / 59.2% NDS on the test set and claims state-of-the-art gains over SOGDet, along with ablations on the validation set. However, the validation result for the base model is reported inconsistently: Table II lists 53.5% NDS / 42.2% mAP, while Table III and Supplementary B.1 list 52.6% NDS / 41.1% mAP for the same configuration.
Significance. The core idea is timely and potentially useful: rather than treating occupancy as a separate output, CoP uses an automatically generated, density-weighted occupancy target as auxiliary supervision to bias the shared BEV representation toward fine-grained geometry. The paper includes a clear ablation path, and the reported occupancy-task gains on TPVFormer and SurroundOcc (Table IV) suggest that the LDO labels may have value as a plug-in signal. The main significance hinges on the detection numbers, which are currently not stable across tables; the difference between the two reported validation scores (0.9 NDS / 1.1 mAP) is of the same order as the claimed advantages over prior work. If the discrepancies are resolved and the LDO label quality is demonstrated, the method would be a solid contribution. As written, the evidence does not yet support the headline claim.
major comments (3)
- [Table II vs. Table III / Supplementary B.1] The same base configuration (ResNet-50, voxel-128, 256×704 input) is reported as 53.5% NDS / 42.2% mAP in Table II but as 52.6% NDS / 41.1% mAP in Table III and Supplementary B.1. The text around Table II states +1.9 NDS / +2.2 mAP over IA-BEV, whereas Supplementary B.1 states +1.1 NDS / +1.0 mAP for the same comparison. This discrepancy is comparable to the claimed test-set gains over SOGDet (Table I) and to the individual ablation increments in Table III, so the central performance claim is not reliably established. Please identify the cause (for example, test-time augmentation, voxel size, or checkpoint selection) and present a single consistent set of validation numbers for the base model.
- [Section III-B, Eq. (4)] The LDO ground truths are generated by merging multi-frame LiDAR with ground-truth box indices for dynamic objects and ego poses for static content. No quantitative check of the resulting label quality is reported before these labels are used to supervise the shared features through the loss in Eq. (3). Annotation noise or misalignment would propagate directly into the detection head. Please add a label-quality evaluation (for example, mIoU against the dense occupancy ground truth on a held-out subset, or an ablation that perturbs the box indices and ego poses) to show that the generated occupancy targets are accurate enough to serve as auxiliary supervision.
- [Table I and Section IV.B] The test-set results (49.5% mAP / 59.2% NDS) are presented without an official test-server report, and the abstract's code link conflicts with Supplementary A.2, which states 'we will release the code after publication'. Given the internal inconsistency in the validation numbers, the test-set comparison cannot be independently checked from the manuscript. Please provide the official evaluation logs for all compared methods or a reproducible code release with exact version/checkpoint identifiers, so the claimed state-of-the-art performance is verifiable.
minor comments (6)
- [Figure 2] The caption says 'ConsistentPerceiver (CoP)' and the figure contains elements such as 'GLT Module', 'Teacher Network / Student Network', 'EMA', and 'Pseudo-Labels' that are never described in the method; please update the figure to match the actual CoP architecture or remove the unrelated components.
- [Supplementary A.2] The implementation details contain unresolved placeholders '[?]' for PyTorch, MMDetection3D, ImageNet, and nuImg; please fill in the missing citations.
- [Section IV.B] The phrase 'marking an improvement of +1.1% NSD' should read 'NDS'.
- [Section IV.C and Table V] The text says uniformly distributed heights are used at intervals of 2 m, but the HoI list in Table VI includes multiple 1 m intervals; please clarify how the uniform baseline was constructed.
- [Table VII] The sentence 'the coarsest voxel sizes [64,64,5] result in lower mAP and NDS values compared to larger voxel sizes' should say 'compared to finer voxel sizes'.
- [Supplementary B.1] The sentence 'with 52.6%/41.1% mAP/NDS' mixes the order of mAP and NDS; Table VII reports 41.1 mAP / 52.6 NDS, so the text should be made consistent.
Circularity Check
No significant circularity: the detection claim is evaluated on the external nuScenes benchmark, and the LDO auxiliary supervision is a training signal derived from nuScenes labels rather than from the model's own predictions.
full rationale
The paper's derivation chain is not circular. The LDO occupancy ground truths are generated from offline multi-frame LiDAR data plus nuScenes ground-truth bounding boxes, instance IDs, and ego poses (Eq. 4 and Section III-B), and then used as auxiliary supervision in the joint loss (Eq. 3). The 3D detection outputs are not defined in terms of the LDO labels; the occupancy loss is a regularizer/auxiliary task, and detection accuracy is measured on the official nuScenes validation and test splits, which are external to the LDO generation procedure. The ablations in Table III compare models trained with and without sparse/dense/LDO occupancy under the same external detection metrics, so the reported gains are empirical and not forced by construction. The VHS and CFF modules are architectural components trained with the same detection supervision; they do not rename or re-fit the evaluation labels. The only self-citation is Reference [49] (VisionKG) as a data-hosting statement ('All the generated LDO data can be found in VisionKG [49]'); this is not load-bearing evidence for any performance claim and does not make the derivation circular. The inconsistency between Table II (53.5 NDS / 42.2 mAP) and Table III / Supplementary B.1 (52.6 NDS / 41.1 mAP) for the same base configuration is a reproducibility or reporting concern, not a circularity concern, because both sets of numbers are external benchmark evaluations rather than restatements of the method's inputs. Overall, no step in the claimed derivation reduces by construction to its own inputs.
Assumptions & free parameters
free parameters (4)
- beta (task balance temperature) =
0.9
- Height intervals of interest (HoIs) =
[−3,−2], [−2,−1], [−1,0], [0,2], [−5,3], [−4,2], [−6,−4], [−2,1] m
- Voxel grid resolution (occupancy) =
[128,128,10] voxels (0.8 m cells) for base
- Depth discretization and spatial range =
60 depth bins; range [−51.2,51.2] x [−51.2,51.2] x [−3,5] m
assumptions (4)
- domain assumption nuScenes ground-truth 3D boxes, instance IDs, ego poses, and segmentation labels are accurate enough to support offline LiDAR aggregation
- domain assumption Multi-frame world-coordinate aggregation with per-object box indices produces physically meaningful dense occupancy labels
- domain assumption Voxel height distributions and HoI choices computed from the training set transfer to validation and test scenes
- domain assumption The occupancy auxiliary task improves detection through shared structural features rather than through added capacity, training time, or richer supervision alone
Cite this review
Pith. "Pith review of Collaborative Perceiver: Elevating Vision-based 3D Object Detection via Local Density-Aware Spatial Occupancy." pith.science (2026). https://pith.science/paper/TTSTAVBY
@misc{pith2026250721358,
author = {Pith},
title = {Pith review of: Collaborative Perceiver: Elevating Vision-based 3D Object Detection via Local Density-Aware Spatial Occupancy},
year = {2026},
howpublished = {\url{https://pith.science/paper/TTSTAVBY}},
note = {Machine review of arXiv:2507.21358}
}
read the original abstract
Vision-based bird's-eye-view (BEV) 3D object detection has advanced significantly in autonomous driving by offering cost-effectiveness and rich contextual information. However, existing methods often construct BEV representations by collapsing extracted object features, neglecting intrinsic environmental contexts, such as roads and pavements. This hinders detectors from comprehensively perceiving the characteristics of the physical world. To alleviate this, we introduce a multi-task learning framework, Collaborative Perceiver (CoP), that leverages spatial occupancy as auxiliary information to mine consistent structural and conceptual similarities shared between 3D object detection and occupancy prediction tasks, bridging gaps in spatial representations and feature refinement. To this end, we first propose a pipeline to generate dense occupancy ground truths incorporating local density information (LDO) for reconstructing detailed environmental information. Next, we employ a voxel-height-guided sampling (VHS) strategy to distill fine-grained local features according to distinct object properties. Furthermore, we develop a global-local collaborative feature fusion (CFF) module that seamlessly integrates complementary knowledge between both tasks, thus composing more robust BEV representations. Extensive experiments on the nuScenes benchmark demonstrate that CoP outperforms existing vision-based frameworks, achieving 49.5\% mAP and 59.2\% NDS on the test set. Code and supplementary materials are available at this link https://github.com/jichengyuan/Collaborative-Perceiver.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Aedet: Azimuth- invariant multi-view 3d object detection,
C. Feng, Z. Jie, Y . Zhong, X. Chu, and L. Ma, “Aedet: Azimuth- invariant multi-view 3d object detection,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 21 580–21 588
work page 2023
-
[2]
3d object detection for autonomous driving: A comprehensive survey,
J. Mao, S. Shi, X. Wang, and H. Li, “3d object detection for autonomous driving: A comprehensive survey,”International Journal of Computer Vision, vol. 131, no. 8, pp. 1909–1963, 2023
work page 1909
-
[3]
Bevdet: High- performance multi-camera 3d object detection in bird-eye-view,
J. Huang, G. Huang, Z. Zhu, Y . Ye, and D. Du, “Bevdet: High- performance multi-camera 3d object detection in bird-eye-view,”arXiv preprint arXiv:2112.11790, 2021
arXiv 2021
-
[4]
Bevdepth: Acquisition of reliable depth for multi-view 3d object detection,
Y . Li, Z. Ge, G. Yu, J. Yang, Z. Wang, Y . Shi, J. Sun, and Z. Li, “Bevdepth: Acquisition of reliable depth for multi-view 3d object detection,” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 37, no. 2, 2023, pp. 1477–1485
work page 2023
-
[5]
Bevdet4d: Exploit temporal cues in multi- camera 3d object detection,
J. Huang and G. Huang, “Bevdet4d: Exploit temporal cues in multi- camera 3d object detection,”arXiv preprint arXiv:2203.17054, 2022
arXiv 2022
-
[6]
Bevformer: Learning bird’s-eye-view representation from multi-camera images via spatiotemporal transformers,
Z. Li, W. Wang, H. Li, E. Xie, C. Sima, T. Lu, Y . Qiao, and J. Dai, “Bevformer: Learning bird’s-eye-view representation from multi-camera images via spatiotemporal transformers,” inEuropean conference on computer vision. Springer, 2022, pp. 1–18
2022
-
[7]
Petrv2: A unified framework for 3d perception from multi-camera images,
Y . Liu, J. Yan, F. Jia, S. Li, A. Gao, T. Wang, and X. Zhang, “Petrv2: A unified framework for 3d perception from multi-camera images,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 3262–3272
work page 2023
-
[8]
Lift, splat, shoot: Encoding images from arbitrary camera rigs by implicitly unprojecting to 3d,
J. Philion and S. Fidler, “Lift, splat, shoot: Encoding images from arbitrary camera rigs by implicitly unprojecting to 3d,” inComputer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part XIV 16. Springer, 2020, pp. 194–210
2020
Show all 64 references
-
[9]
Did we test all scenarios for automated and autonomous driving systems?
F. Hauer, T. Schmidt, B. Holzm ¨uller, and A. Pretschner, “Did we test all scenarios for automated and autonomous driving systems?” in2019 IEEE Intelligent Transportation Systems Conference (ITSC). IEEE, 2019, pp. 2950–2955
2019
-
[10]
Surroundocc: Multi-camera 3d occupancy prediction for autonomous driving,
Y . Wei, L. Zhao, W. Zheng, Z. Zhu, J. Zhou, and J. Lu, “Surroundocc: Multi-camera 3d occupancy prediction for autonomous driving,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 21 729–21 740
2023
-
[11]
Flashocc: Fast and memory-efficient occupancy prediction via channel-to-height plugin,
Z. Yu, C. Shu, J. Deng, K. Lu, Z. Liu, J. Yu, D. Yang, H. Li, and Y . Chen, “Flashocc: Fast and memory-efficient occupancy prediction via channel-to-height plugin,”arXiv preprint arXiv:2311.12058, 2023
2023 arXiv
-
[12]
Bevfusion: Multi-task multi-sensor fusion with unified bird’s- eye view representation,
Z. Liu, H. Tang, A. Amini, X. Yang, H. Mao, D. L. Rus, and S. Han, “Bevfusion: Multi-task multi-sensor fusion with unified bird’s- eye view representation,” in2023 IEEE international conference on robotics and automation (ICRA). IEEE, 2023, pp. 2774–2781
2023
-
[13]
Anyloc: Towards universal visual place recognition,
N. Keetha, A. Mishra, J. Karhade, K. M. Jatavallabhula, S. Scherer, M. Krishna, and S. Garg, “Anyloc: Towards universal visual place recognition,”IEEE Robotics and Automation Letters, 2023
2023
-
[14]
nuscenes: A multimodal dataset for autonomous driving,
H. Caesar, V . Bankiti, A. H. Lang, S. V ora, V . E. Liong, Q. Xu, A. Krishnan, Y . Pan, G. Baldan, and O. Beijbom, “nuscenes: A multimodal dataset for autonomous driving,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 11 621–11 631
2020
-
[15]
Performance and challenges of 3d object detection methods in complex scenes for autonomous driving,
K. Wang, T. Zhou, X. Li, and F. Ren, “Performance and challenges of 3d object detection methods in complex scenes for autonomous driving,”IEEE Transactions on Intelligent Vehicles, vol. 8, no. 2, pp. 1699–1716, 2022
2022
-
[16]
Objects are different: Flexible monocu- lar 3d object detection,
Y . Zhang, J. Lu, and J. Zhou, “Objects are different: Flexible monocu- lar 3d object detection,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021, pp. 3289–3298
2021
-
[17]
Is pseudo- lidar needed for monocular 3d object detection?
D. Park, R. Ambrus, V . Guizilini, J. Li, and A. Gaidon, “Is pseudo- lidar needed for monocular 3d object detection?” inProceedings of the IEEE/CVF International Conference on Computer Vision, 2021, pp. 3142–3152
2021
-
[18]
M3d-rpn: Monocular 3d region proposal network for object detection,
G. Brazil and X. Liu, “M3d-rpn: Monocular 3d region proposal network for object detection,” inProceedings of the IEEE/CVF in- ternational conference on computer vision, 2019, pp. 9287–9296
2019
-
[19]
Delving into localization errors for monocular 3d object detection,
X. Ma, Y . Zhang, D. Xu, D. Zhou, S. Yi, H. Li, and W. Ouyang, “Delving into localization errors for monocular 3d object detection,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021, pp. 4721–4730
2021
-
[20]
Monocular 3d object detection for autonomous driving,
X. Chen, K. Kundu, Z. Zhang, H. Ma, S. Fidler, and R. Urtasun, “Monocular 3d object detection for autonomous driving,” inPro- ceedings of the IEEE conference on computer vision and pattern recognition, 2016, pp. 2147–2156
2016
-
[21]
Fcos: A simple and strong anchor-free object detector,
Z. Tian, C. Shen, H. Chen, and T. He, “Fcos: A simple and strong anchor-free object detector,”IEEE transactions on pattern analysis and machine intelligence, vol. 44, no. 4, pp. 1922–1933, 2020
1922
-
[22]
Center- net: Keypoint triplets for object detection,
K. Duan, S. Bai, L. Xie, H. Qi, Q. Huang, and Q. Tian, “Center- net: Keypoint triplets for object detection,” inProceedings of the IEEE/CVF international conference on computer vision, 2019, pp. 6569–6578
2019
-
[23]
Fcos3d: Fully convolutional one-stage monocular 3d object detection,
T. Wang, X. Zhu, J. Pang, and D. Lin, “Fcos3d: Fully convolutional one-stage monocular 3d object detection,” inProceedings of the IEEE/CVF International Conference on Computer Vision, 2021, pp. 913–922
2021
-
[24]
Bev- san: Accurate bev 3d object detection via slice attention networks,
X. Chi, J. Liu, M. Lu, R. Zhang, Z. Wang, Y . Guo, and S. Zhang, “Bev- san: Accurate bev 3d object detection via slice attention networks,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 17 461–17 470
2023
-
[25]
M2bev: Multi-camera joint 3d detection and segmentation with unified birds-eye view representation. arxiv 2022,
E. Xie, Z. Yu, D. Zhou, J. Philion, A. Anandkumar, S. Fidler, P. Luo, and J. Alvarez, “M2bev: Multi-camera joint 3d detection and segmentation with unified birds-eye view representation. arxiv 2022,” arXiv preprint arXiv:2204.05088
2022 arXiv
-
[26]
Detr3d: 3d object detection from multi-view images via 3d-to-2d queries,
Y . Wang, V . C. Guizilini, T. Zhang, Y . Wang, H. Zhao, and J. Solomon, “Detr3d: 3d object detection from multi-view images via 3d-to-2d queries,” inConference on Robot Learning. PMLR, 2022, pp. 180– 191
2022
-
[27]
Petr: Position embedding transformation for multi-view 3d object detection,
Y . Liu, T. Wang, X. Zhang, and J. Sun, “Petr: Position embedding transformation for multi-view 3d object detection,” inEuropean Con- ference on Computer Vision. Springer, 2022, pp. 531–548
2022
-
[28]
Sparsebev: High- performance sparse 3d object detection from multi-camera videos,
H. Liu, Y . Teng, T. Lu, H. Wang, and L. Wang, “Sparsebev: High- performance sparse 3d object detection from multi-camera videos,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 18 580–18 590
2023
-
[29]
End-to-end object detection with transformers,
N. Carion, F. Massa, G. Synnaeve, N. Usunier, A. Kirillov, and S. Zagoruyko, “End-to-end object detection with transformers,” in European conference on computer vision. Springer, 2020, pp. 213– 229
2020
-
[30]
Virtual occupancy grid map for submap-based pose graph slam and planning in 3d environments,
B.-J. Ho, P. Sodhi, P. Teixeira, M. Hsiao, T. Kusnur, and M. Kaess, “Virtual occupancy grid map for submap-based pose graph slam and planning in 3d environments,” in2018 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). IEEE, 2018, pp. 2175–2182
2018
-
[31]
3d path planning and stereo-based obstacle avoidance for rotorcraft uavs,
S. Hrabar, “3d path planning and stereo-based obstacle avoidance for rotorcraft uavs,” in2008 IEEE/RSJ International Conference on Intelligent Robots and Systems. IEEE, 2008, pp. 807–814
2008
-
[32]
Using occupancy grids for mobile robot perception and navigation,
A. Elfes, “Using occupancy grids for mobile robot perception and navigation,”Computer, vol. 22, no. 6, pp. 46–57, 1989
1989
-
[33]
Occupancy anticipation for efficient exploration and navigation,
S. K. Ramakrishnan, Z. Al-Halah, and K. Grauman, “Occupancy anticipation for efficient exploration and navigation,” inComputer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part V 16. Springer, 2020, pp. 400–418
2020
-
[34]
Probabilistic and geometric depth: Detecting objects in perspective,
T. Wang, Z. Xinge, J. Pang, and D. Lin, “Probabilistic and geometric depth: Detecting objects in perspective,” inConference on Robot Learning. PMLR, 2022, pp. 1475–1485
2022
-
[35]
High resolution maps from wide an- gle sonar,
H. Moravec and A. Elfes, “High resolution maps from wide an- gle sonar,” inProceedings. 1985 IEEE international conference on robotics and automation, vol. 2. IEEE, 1985, pp. 116–121
1985
-
[36]
Tri-perspective view for vision-based 3d semantic occupancy prediction,
Y . Huang, W. Zheng, Y . Zhang, J. Zhou, and J. Lu, “Tri-perspective view for vision-based 3d semantic occupancy prediction,” inProceed- ings of the IEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 9223–9232
2023
-
[37]
Occ3d: A large-scale 3d occupancy prediction benchmark for autonomous driving,
X. Tian, T. Jiang, L. Yun, Y . Mao, H. Yang, Y . Wang, Y . Wang, and H. Zhao, “Occ3d: A large-scale 3d occupancy prediction benchmark for autonomous driving,”Advances in Neural Information Processing Systems, vol. 36, 2024
2024
-
[38]
Occnerf: Self-supervised multi-camera occupancy prediction with neural radiance fields,
C. Zhang, J. Yan, Y . Wei, J. Li, L. Liu, Y . Tang, Y . Duan, and J. Lu, “Occnerf: Self-supervised multi-camera occupancy prediction with neural radiance fields,”arXiv preprint arXiv:2312.09243, 2023
2023 arXiv
-
[39]
Sparseocc: Rethinking sparse latent representation for vision-based semantic occupancy prediction,
P. Tang, Z. Wang, G. Wang, J. Zheng, X. Ren, B. Feng, and C. Ma, “Sparseocc: Rethinking sparse latent representation for vision-based semantic occupancy prediction,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 15 035–15 044
2024
-
[40]
3dssd: Point-based 3d single stage object detector,
Z. Yang, Y . Sun, S. Liu, and J. Jia, “3dssd: Point-based 3d single stage object detector,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 11 040–11 048
2020
-
[41]
Std: Sparse-to-dense 3d object detector for point cloud,
Z. Yang, Y . Sun, S. Liu, X. Shen, and J. Jia, “Std: Sparse-to-dense 3d object detector for point cloud,” inProceedings of the IEEE/CVF international conference on computer vision, 2019, pp. 1951–1960
2019
-
[42]
A survey on 3d object detection methods for autonomous driving applications,
E. Arnold, O. Y . Al-Jarrah, M. Dianati, S. Fallah, D. Oxtoby, and A. Mouzakitis, “A survey on 3d object detection methods for autonomous driving applications,”IEEE Transactions on Intelligent Transportation Systems, vol. 20, no. 10, pp. 3782–3795, 2019
2019
-
[43]
Occformer: Dual-path transformer for vision-based 3d semantic occupancy prediction,
Y . Zhang, Z. Zhu, and D. Du, “Occformer: Dual-path transformer for vision-based 3d semantic occupancy prediction,” inProceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 9433–9443
2023
-
[44]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” inProceedings of the IEEE conference on computer vision and pattern recognition, 2016, pp. 770–778
2016
-
[45]
Feature pyramid networks for object detection,
T.-Y . Lin, P. Doll´ar, R. Girshick, K. He, B. Hariharan, and S. Belongie, “Feature pyramid networks for object detection,” inProceedings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 2117–2125
2017
-
[46]
Fastocc: Accelerating 3d occupancy prediction by fus- ing the 2d bird’s-eye view and perspective view,
J. Hou, X. Li, W. Guan, G. Zhang, D. Feng, Y . Du, X. Xue, and J. Pu, “Fastocc: Accelerating 3d occupancy prediction by fus- ing the 2d bird’s-eye view and perspective view,”arXiv preprint arXiv:2403.02710, 2024
2024 arXiv
-
[47]
Pointocc: Cylindrical tri-perspective view for point-based 3d semantic occupancy predic- tion,
S. Zuo, W. Zheng, Y . Huang, J. Zhou, and J. Lu, “Pointocc: Cylindrical tri-perspective view for point-based 3d semantic occupancy predic- tion,”arXiv preprint arXiv:2308.16896, 2023
2023 arXiv
-
[48]
Density- preserving deep point cloud compression,
Y . He, X. Ren, D. Tang, Y . Zhang, X. Xue, and Y . Fu, “Density- preserving deep point cloud compression,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 2333–2342
2022
-
[49]
Visionkg: Unleashing the power of visual datasets via knowledge graph,
J. Yuan, A. Le-Tuan, M. Nguyen-Duc, T.-K. Tran, M. Hauswirth, and D. Le-Phuoc, “Visionkg: Unleashing the power of visual datasets via knowledge graph,” inEuropean Semantic Web Conference. Springer, 2024, pp. 75–93
2024
-
[50]
Squeeze-and-excitation networks,
J. Hu, L. Shen, and G. Sun, “Squeeze-and-excitation networks,” in Proceedings of the IEEE conference on computer vision and pattern recognition, 2018, pp. 7132–7141
2018
-
[51]
Density-based clustering for 3d object detection in point clouds,
S. M. Ahmed and C. M. Chew, “Density-based clustering for 3d object detection in point clouds,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2020, pp. 10 608–10 617
2020
-
[52]
Infofocus: 3d object detec- tion for autonomous driving with dynamic information modeling,
J. Wang, S. Lan, M. Gao, and L. S. Davis, “Infofocus: 3d object detec- tion for autonomous driving with dynamic information modeling,” in Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part X 16. Springer, 2020, pp. 405–420
2020
-
[53]
Pointpillars: Fast encoders for object detection from point clouds,
A. H. Lang, S. V ora, H. Caesar, L. Zhou, J. Yang, and O. Beijbom, “Pointpillars: Fast encoders for object detection from point clouds,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2019, pp. 12 697–12 705
2019
-
[54]
Centerfusion: Center-based radar and camera fusion for 3d object detection,
R. Nabati and H. Qi, “Centerfusion: Center-based radar and camera fusion for 3d object detection,” inProceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, 2021, pp. 1527–1536
2021
-
[55]
Mvfusion: Multi-view 3d object detection with semantic-aligned radar and camera fusion,
Z. Wu, G. Chen, Y . Gan, L. Wang, and J. Pu, “Mvfusion: Multi-view 3d object detection with semantic-aligned radar and camera fusion,” in2023 IEEE International Conference on Robotics and Automation (ICRA). IEEE, 2023, pp. 2766–2773
2023
-
[56]
Learning ego 3d representation as ray tracing,
J. Lu, Z. Zhou, X. Zhu, H. Xu, and L. Zhang, “Learning ego 3d representation as ray tracing,” inEuropean Conference on Computer Vision. Springer, 2022, pp. 129–144
2022
-
[57]
Cross modal transformer: Towards fast and robust 3d object detection,
J. Yan, Y . Liu, J. Sun, F. Jia, S. Li, T. Wang, and X. Zhang, “Cross modal transformer: Towards fast and robust 3d object detection,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 18 268–18 278
2023
-
[58]
X3kd: Knowledge distillation across modalities, tasks and stages for multi-camera 3d object detection,
M. Klingner, S. Borse, V . R. Kumar, B. Rezaei, V . Narayanan, S. Yogamani, and F. Porikli, “X3kd: Knowledge distillation across modalities, tasks and stages for multi-camera 3d object detection,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni...
2023
-
[59]
Sogdet: Semantic-occupancy guided multi-view 3d object detection,
Q. Zhou, J. Cao, H. Leng, Y . Yin, Y . Kun, and R. Zimmermann, “Sogdet: Semantic-occupancy guided multi-view 3d object detection,” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 38, no. 7, 2024, pp. 7668–7676
2024
-
[60]
Cobev: Elevating roadside 3d object detection with depth and height complementarity,
H. Shi, C. Pang, J. Zhang, K. Yang, Y . Wu, H. Ni, Y . Lin, R. Stiefel- hagen, and K. Wang, “Cobev: Elevating roadside 3d object detection with depth and height complementarity,”IEEE Transactions on Image Processing, 2024
2024
-
[61]
Dualbev: Cnn is all you need in view transformation,
P. Li, W. Shen, Q. Huang, and D. Cui, “Dualbev: Cnn is all you need in view transformation,”arXiv preprint arXiv:2403.05402, 2024
2024 arXiv
-
[62]
Decoupled weight decay regularization,
I. Loshchilov, “Decoupled weight decay regularization,”arXiv preprint arXiv:1711.05101, 2017
2017 arXiv
-
[63]
Class-balanced grouping and sampling for point cloud 3d object detection,
B. Zhu, Z. Jiang, X. Zhou, Z. Li, and G. Yu, “Class-balanced grouping and sampling for point cloud 3d object detection,”arXiv preprint arXiv:1908.09492, 2019
1908 arXiv
-
[64]
Instance-aware multi-camera 3d object detection with structural pri- ors mining and self-boosting learning,
Y . Jiao, Z. Jie, S. Chen, L. Cheng, J. Chen, L. Ma, and Y .-G. Jiang, “Instance-aware multi-camera 3d object detection with structural pri- ors mining and self-boosting learning,” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 38, no. 3, 2024, pp. 2598–...
2024
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.