Pith. sign in

REVIEW 5 major objections 14 minor 72 references

TiGDistill-BEV: Multi-view BEV 3D Object Detection via Target Inner-Geometry Learning Distillation

T0 review · 5 major / 14 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Distilling an object's internal depth relations and keypoint-feature similarities from a LiDAR or fusion teacher lifts a camera-only bird's-eye-view detector to 62.8% NDS on nuScenes.

desk verdict Real gains on nuScenes, but the core inner-feature equations are dimensionally inconsistent as written; the method needs major revision before it is reproducible. read the letter →

arxiv 2412.20911 v1 pith:GYQVQ6LS submitted 2024-12-30 cs.CV

classification cs.CV
keywords 3Dobjectdetectionbird's-eyeviewknowledgedistillationLiDAR-to-camerainner-geometrylearningdepthsupervisionBEVfeaturenuScenes
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

This paper tries to establish that a camera-only bird's-eye-view (BEV) 3D detector can be made substantially more accurate by distilling, from a LiDAR or fusion teacher, the internal geometry of each foreground object rather than only dense depth or dense BEV features. The proposed scheme, TiGDistill-BEV, adds two complementary supervisory signals: relative depth within each object computed against an adaptively chosen reference pixel, and the similarity structure of BEV keypoint features sampled inside each object, matched across channels and across keypoints. On nuScenes, applying this to BEVDepth raises validation NDS from 52.1 to 54.4 and test NDS from 58.9 to 62.8, with mAP from 49.1 to 53.9, surpassing prior distillation-based detectors. If the result holds, the active ingredient in LiDAR-to-camera distillation is not matching raw features but transferring the object's internal spatial and semantic relations.

What carries the argument

Two modules carry the method. Inner-depth supervision projects LiDAR points inside each ground-truth 3D box onto image planes to obtain foreground pixels, converts the student's categorical depth distribution into a continuous depth per pixel, picks the pixel with the smallest depth error as an adaptive reference, and applies an $L_2$ loss to the predicted-minus-reference depth differences. Inner-feature BEV distillation samples N uniform keypoints inside each enlarged BEV box, extracts their features from teacher and student BEV encoders, and matches two similarity matrices under $L_2$ loss: the $C\times C$ inter-channel matrix and the $N\times N$ inter-keypoint matrix of the sampled features. These similarity matrices are the central objects; they carry object-level geometric semantics without forcing cross-modal feature identity.

What would settle it

A direct test: on the nuScenes validation set, bucket objects by occlusion level and by the number of LiDAR points inside the ground-truth box; if TiGDistill-BEV's NDS improvement over BEVDepth is concentrated in well-observed buckets and vanishes for occluded or sparse objects, the foreground-projection premise is load-bearing. Alternatively, randomly drop a fraction of the foreground pixels used in the inner-depth loss during training; if the gain survives heavy dropout, the premise is not essential.

Watch

Extended reading notes

Core claim

The central claim is that target inner-geometry learning—supervising the camera student on relative depth inside each object and on inter-channel and inter-keypoint similarities of its BEV keypoint features—is what makes cross-modal distillation effective for multi-view BEV detection. The paper argues that absolute depth supervision ignores fine-grained within-object structure and that dense BEV feature imitation is hampered by the modality gap. By converting categorical depth predictions to continuous values and subtracting an adaptively chosen reference depth per object, and by distilling only the correlation matrices of sampled foreground keypoints instead of the features themselves, the student inherits LiDAR-like geometric understanding while keeping its own representational identity. The reported outcome is consistent gains across student baselines, backbones, temporal settings, small objects, and distance ranges, with the largest headline result of 62.8% NDS and 53.9% mAP on the nuScenes test set.

Load-bearing premise

The load-bearing premise is that projecting the LiDAR points inside a ground-truth 3D box onto image and BEV planes yields a reliable foreground mask for every training target, so the inner-depth and inner-feature losses supervise true object geometry rather than noisy, sparse, or occluded pixels.

Editorial extensions

If this is right

  • BEVDepth, BEVDet, and BEVDet4D all improve on the nuScenes val set under a CenterPoint teacher, with NDS gains between 2.3 and 2.9 points.
  • On the nuScenes test set, BEVDepth with a BEVFusion teacher reaches 62.8% NDS and 53.9% mAP, outperforming BEVDistill by 3.4 NDS and 4.1 mAP under matched implementation.
  • Inner-feature distillation alone contributes more (+3.0 mAP, +2.3 NDS) than inner-depth supervision alone (+1.0 mAP, +0.9 NDS), and combining both gives +3.7 mAP and +3.0 NDS on the val ablation.
  • The improvement persists across image backbones (ResNet-18/50/101, Swin, ConvNeXt), in single-frame and multi-frame settings, for small object classes, and in the 30-60 meter range.
  • Teacher quality scales the transfer: using BEVFusion as teacher yields larger gains than LiDAR-only teachers CenterPoint and PillarNeXt.

Reading between the lines

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

  • Beyond the paper: if relative object structure is the active signal, the same inner-geometry losses could transfer to other camera-only BEV tasks such as BEV map segmentation or occupancy prediction, where LiDAR teachers are available.
  • Beyond the paper: the adaptive reference point is selected using ground-truth depth error at training time; a learned or confidence-weighted reference might generalize better when student depth is systematically biased, a comparison the paper does not run.
  • Beyond the paper: because the stated motivation is the modality gap, the advantage over dense BEV distillation should grow as teacher and student architectures diverge; testing with deliberately mismatched backbones would isolate this effect.
  • Beyond the paper: the paper lists temporal inner-depth supervision as future work; aggregating the same object's interior points across frames could recover occluded foreground, provided multi-frame calibration is accurate.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

5 major / 14 minor

Summary. The paper proposes TiGDistill-BEV, a training-time knowledge-distillation framework for camera-based multi-view BEV 3D object detection. The method adds two components to a camera-only student detector: (1) an inner-depth supervision module that computes relative depth within foreground targets using an adaptively selected reference point, and (2) an inner-feature BEV distillation module that samples keypoints in ground-truth boxes and distills inter-channel and inter-keypoint similarity matrices from a LiDAR or fusion teacher. Experiments on nuScenes report consistent gains over BEVDet, BEVDet4D, and BEVDepth, with a test-set result of 62.8% NDS and 53.9% mAP when using a BEVFusion teacher.

Significance. If the empirical results hold, the paper would demonstrate a practical and reusable recipe for transferring LiDAR or fusion teacher knowledge to camera-only BEV detectors, with gains that are consistent across backbones, temporal settings, and teacher models. The paper's strengths include evaluation on an external benchmark, a large set of ablation tables (Tables III-XIII), multiple baseline detectors, and a public code link. The main weakness is that a core part of the method specification, Eqs. (5) and (7), is internally inconsistent with respect to matrix dimensions, which makes the current text ambiguous enough to prevent reproduction and to obscure which of the two distillation losses is responsible for the reported ablation gains.

major comments (5)
  1. [Section III-C2 and III-C3, Eqs. (5) and (7)] The matrix definitions are dimensionally inconsistent. Section III-C1 defines f_j^cam, f_j^teacher in R^{N×C}. In Eq. (5), f_j f_j^T is N×N, not C×C, so it cannot represent an inter-channel relationship matrix; the correct channel-correlation matrix is f_j^T f_j. In Eq. (7), f_j^T f_j is C×C, not N×N, so it cannot represent an inter-keypoint relationship matrix; the correct keypoint-correlation matrix is f_j f_j^T. Figure 6 and the text label the losses as inter-channel and inter-keypoint, but the formulas are swapped relative to those labels and to the stated dimensions. This makes the method specification ambiguous: if the implementation follows the equations literally, the loss named L_IC^bev is actually comparing keypoint correlations and L_IK^bev is comparing channel correlations, so the Table V ablation cannot be mapped to the described components. Please correct the equations or the stated dimensions/names and confirm which variant is used in the released code.
  2. [Section III-D and Section IV-B] The overall loss in Eq. (10) is written as an unweighted sum, but no loss weights are reported for L_depth^R, L_bev^IC, or L_bev^IK. These auxiliary losses operate on very different scales (continuous relative depth values versus similarity matrices of size C×C or N×N), so equal weights are unlikely to be the actual setting. In addition, Section III-C1 samples N keypoints per target and slightly enlarges ground-truth boxes in BEV space, but neither the value of N nor the enlargement factor is reported in Section IV-B. These are free parameters of the method and are necessary for reproducing the ablation results in Tables III, V, and VIII. Please report the exact loss weights, N, the enlargement factor, and any normalization used in Eqs. (6) and (8).
  3. [Section III-B3, Eq. (2)] The adaptive depth reference is selected by minimizing the error between predicted and ground-truth depth at training time. This is legitimate for a training-only auxiliary loss, but the paper should state explicitly that this selection is not used at inference, and it should discuss the oracle nature of using ground-truth depth in the reference selection. Table IV compares the 'Smallest Error' policy with a 'Highest Conf' policy and shows a relatively small gap, which partially addresses the concern, but the paper would be strengthened by an additional sensitivity analysis, for example using a fixed reference point or a predicted-only confidence reference, and by reporting how the reference selection behaves over training iterations.
  4. [Section IV-D6, Table VIII] The comparison with 'Naive Distill' uses dense BEV MSE, and the BEVDistill comparison uses foreground-guided dense distillation; neither controls for the keypoint sampling step. To substantiate the claim that relationship-based distillation is superior to direct feature alignment, please add an ablation that applies a point-wise L2 loss to the same N sampled keypoints without computing cross-channel or cross-keypoint correlations. Without this control, the gains attributed to inter-channel and inter-keypoint relationship modeling could also come from the keypoint sampling procedure or from the foreground masking itself.
  5. [Section III-B1 and Section IV-F2] For occluded, distant, or LiDAR-sparse objects, the foreground pixel set obtained by projecting LiDAR points inside the box can be empty or very small. The paper acknowledges the occlusion limitation in Section IV-F2, but it does not specify how Eq. (4), Eq. (6), and Eq. (8) are computed for degenerate cases, for example whether targets with fewer than a threshold number of pixels are skipped. The distance-range ablation in Table XII shows only modest gains at 30-60 m, so the handling of sparse foreground is empirically relevant. Please report the fraction of targets with valid foreground in the training set and state the exact handling rule for empty or near-empty target regions.
minor comments (14)
  1. [Section IV-C1] The text states that TiGDistill-BEV 'consistently produced lower error metrics', but Table I shows that BEVDet mAOE increases from 52.3 to 55.4 and BEVDet4D mA VE increases from 33.1 to 34.1; please qualify this claim.
  2. [Section IV-C1] The '13.2% reduction in mA VE' compares BEVDet's 90.9 to 77.7, which is an absolute difference of 13.2 units rather than a percentage reduction, and it is not 'compared to BEVDepth' as written; please correct the description.
  3. [Section IV-D5, Table VII] The text says PillarNext* gains 2.1% NDS, but Table VII shows 50.4 - 48.1 = 2.3; please correct this value.
  4. [Section III-B2, Eq. (1)] The number of depth bins is denoted K in Section III-A but D in Section III-B2; please use consistent notation and define the symbol \hat{S}[k].
  5. [Section III-B4, Eq. (4)] The L2 norm is applied to sets of depth values; please write the loss as an explicit sum over pixels with clear indices so that the objective is unambiguous.
  6. [Section III-D, Eq. (10)] Eq. (10) uses L_bev, but Eq. (9) defines the symbol L_bev^D; please align the notation.
  7. [Section III-C, Eq. (9)] The two distillation terms are not mathematically orthogonal; consider using 'complementary' instead of 'orthogonal'.
  8. [Figures 4 and 6] There are typos in the figures and captions: 'Target Iner-Geometry' in Figure 4, 'Chosely' in the Figure 4 diagram, and 'Innter-feature' in Figure 6; please proofread.
  9. [Section III-B3] The sentence 'based on the the predicted continuous depth values' contains a duplicated 'the'.
  10. [Abstract] The sentence 'The codes is available at: ...' should read 'The code is available at: ...'.
  11. [Table X] The BEVDet baseline values differ across rows (20.3/33.1, 30.5/37.8, and 29.8/37.9) although the caption says the configurations uniformly use ResNet-50 at 256×704; please clarify which baseline corresponds to each concurrent method.
  12. [Section IV-A and Table VI] Table VI reports SILog, but SILog is not defined in the evaluation metrics section; please add its definition.
  13. [References [42] and [43]] MonoDETR is listed twice with the same title; please consolidate the duplicate reference.
  14. [Section IV-B] The sentence 'we utilize the freeze the teacher model' has a grammar error; please correct it.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: nuScenes gains are measured on external val/test metrics that the distillation losses do not directly optimize; teacher-student setup is a standard independent benchmark.

full rationale

The paper's central claim is an empirical improvement on nuScenes NDS/mAP. The proposed losses (L^R_depth, L^IC_bev, L^IK_bev) directly minimize differences between student predictions and ground-truth-derived or teacher-derived targets during training; they do not contain NDS or mAP as closed-form terms, and the reported numbers are from the official nuScenes evaluation on held-out val/test splits. The teacher models (CenterPoint, PillarNeXt, BEVFusion) are pre-trained on the same nuScenes train split, but this is standard distillation rather than circularity: the student is camera-only at inference, and the gains are assessed against external detection metrics, not against the distillation losses themselves. Table VI's depth-metric improvements are expected because inner-depth supervision directly trains toward LiDAR-derived depth, but the paper's headline claim is detection performance, so this is a sanity check rather than a self-fulfilling prediction. There is no load-bearing self-citation: the authors' prior works appear only as related-work references, and no 'uniqueness theorem' or prior result is invoked to forbid alternatives. Section IV-F2 openly acknowledges occlusion as a limitation; that affects robustness, not circularity. One specification concern found during review — the dimensional mismatch in Eqs. (5) and (7), where f in R^{N x C} makes f f^T an N x N keypoint Gram matrix rather than C x C, and f^T f a C x C channel Gram matrix rather than N x N — is a correctness/reproducibility issue about which loss is which, but it does not make any reported result equivalent to its inputs by construction, so it is outside the circularity score.

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

The method introduces no new physical entities, forces, or conserved quantities. Its free parameters are architectural and loss-design choices, most of which are not fully disclosed. The main assumptions are standard domain assumptions for LiDAR-to-camera distillation on nuScenes. The undisclosed hyperparameters (N, enlargement factor, loss weights) are the largest gap between the paper's claims and an independent reproduction.

free parameters (4)
  • number of keypoints N per target = not reported
    Section III-C1 says N keypoints are uniformly sampled within each enlarged BEV bounding box, but the paper does not give its value or an ablation over N. The distillation loss magnitude depends directly on N.
  • loss weights for L_depth^R, L_bev^IC, L_bev^IK = not reported
    Equation (10) sums five losses with no explicit weighting coefficients. The relative scale of the distillation losses versus detection loss is a free choice that is not documented.
  • foreground BEV box enlargement factor = not reported
    Section III-C1 says the GT box is 'slightly enlarged' to cover contours and edges, but no enlargement factor is given. This changes which keypoints are sampled and therefore what the distillation loss aligns.
  • teacher model choice = CenterPoint, PillarNeXt, BEVFusion
    The teacher is not derived from the method; the paper selects among three pre-trained detectors. The choice affects gains substantially (Table VII), so the reported SOTA number is conditional on this selection.
assumptions (4)
  • domain assumption Camera and LiDAR BEV feature maps have the same spatial resolution and channel count.
    Section III-A2 states the teacher BEV feature has the same feature size as the student BEV feature, which is needed for keypoint-based distillation in Eqs. (5)-(8). This holds in their setup but restricts the method to matched encoder output shapes.
  • domain assumption Camera intrinsics, extrinsics, and LiDAR-to-camera calibration are accurate during training.
    The inner-depth supervision projects LiDAR points inside 3D boxes onto image planes and BEV grids. The paper's own Section IV-F2 acknowledges that inaccurate intrinsic/extrinsic parameters would corrupt the depth ground truth.
  • domain assumption LiDAR points inside a ground-truth bounding box form a usable proxy for the object's visible foreground.
    Section III-B1 builds the foreground region from projected LiDAR points inside the box. Occluded or partially scanned objects yield incomplete or misleading foreground masks, as the paper's own limitation discussion states.
  • domain assumption Pre-trained teacher detectors used for distillation were trained on the same nuScenes training distribution, and their BEV features encode knowledge that transfers to camera students.
    The whole distillation relies on this transfer assumption. It is a standard and reasonable assumption in KD literature, but it is not derived in the paper.

how reviews work

0 comments
Cite this review

Pith. "Pith review of TiGDistill-BEV: Multi-view BEV 3D Object Detection via Target Inner-Geometry Learning Distillation." pith.science (2026). https://pith.science/paper/GYQVQ6LS

@misc{pith2026241220911,
  author       = {Pith},
  title        = {Pith review of: TiGDistill-BEV: Multi-view BEV 3D Object Detection via Target Inner-Geometry Learning Distillation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/GYQVQ6LS}},
  note         = {Machine review of arXiv:2412.20911}
}
read the original abstract

Accurate multi-view 3D object detection is essential for applications such as autonomous driving. Researchers have consistently aimed to leverage LiDAR's precise spatial information to enhance camera-based detectors through methods like depth supervision and bird-eye-view (BEV) feature distillation. However, existing approaches often face challenges due to the inherent differences between LiDAR and camera data representations. In this paper, we introduce the TiGDistill-BEV, a novel approach that effectively bridges this gap by leveraging the strengths of both sensors. Our method distills knowledge from diverse modalities(e.g., LiDAR) as the teacher model to a camera-based student detector, utilizing the Target Inner-Geometry learning scheme to enhance camera-based BEV detectors through both depth and BEV features by leveraging diverse modalities. Specially, we propose two key modules: an inner-depth supervision module to learn the low-level relative depth relations within objects which equips detectors with a deeper understanding of object-level spatial structures, and an inner-feature BEV distillation module to transfer high-level semantics of different key points within foreground targets. To further alleviate the domain gap, we incorporate both inter-channel and inter-keypoint distillation to model feature similarity. Extensive experiments on the nuScenes benchmark demonstrate that TiGDistill-BEV significantly boosts camera-based only detectors achieving a state-of-the-art with 62.8% NDS and surpassing previous methods by a significant margin. The codes is available at: https://github.com/Public-BOTs/TiGDistill-BEV.git.

Figures

Figures reproduced from arXiv: 2412.20911 by the authors.

Figure 1
Figure 1. Different LiDAR-to-Camera Learning Schemes: (a) Dense Depth Supervision, which directly supervises the categorial depth distribution of every valid pixel in the whole depth map, (b) BEV Feature Distillation, which constrainedly aligns the value of BEV feature between different modalities, (c) Our Target Inner-Geometry Learning, which utilizes both the low-level inner-depth relations and the high-level inner-feature … view at source ↗
Figure 2
Figure 2. Inner-depth Supervision. We guide the camera-based detector to learn the relative spatial structures within the target foreground areas. A depth reference point (dotted in yellow) is adaptively selected to calculate relative depth. issue, we propose TiGDistill-BEV, a novel multi-modality distillation learning scheme that integrates the inner-geometry of foreground targets into camera-based detectors for multi￾view B… view at source ↗
Figure 4
Figure 4. Overall Framework of TiGDistill-BEV, which contains a pre-trained teacher model, a camera-based detector as student, and a target inner-geometry scheme for cross-modal learning. Our proposed learning paradigm bridges the modalities gap by transferring the inner-geometry semantics from the teacher modality via two components, an inner-depth supervision for foreground relative depth, and an inner-feature BEV distillat… view at source ↗
Figures from the paper (4 more)
Figure 5
Figure 5. Figure 5: Comparison Categorical Absolute Depth and Continuous Inner Depth. Employing the inner-depth supervision with continuous depth values to guide camera-based student to learn local spatial structures of foreground object targets. B. Inner-depth Supervision In addition to …
Figure 6
Figure 6. Figure 6: Details of Innter-feature BEV Distillation. For each foreground area in BEV space, we represent each target feature by a set of key points and conduct feature distillation in both inter-channel and inter-keypoint manners. C. Inner-feature BEV Distillation Beyond depth …
Figure 7
Figure 7. Figure 7: Visualization of Predicted Depth Maps. We show the predicted depth maps before and after the inner-depth supervision, respectively, to better understand the impacts of this module. 3) Inner-feature BEV Distillation: Our TiGDistill-BEV ex￾plores the BEV feature distilla…
Figure 8
Figure 8. Figure 8: Visualization of Detection Results. From left to right, we show the 3D object detection before and after the TiGDistill-BEV learning schemes, ground-truth annotations, along with the overall BEV-space results. TABLE XII Performance of Different Distance Ranges. LA dept…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

72 extracted references · 42 canonical work pages

  1. [45]

    Similarity-preserving knowledge distillation,

    F. Tung and G. Mori, “Similarity-preserving knowledge distillation,” in Proceedings of the IEEE/CVF international conference on computer vision, 2019, pp. 1365–1374

  2. [46]

    Visualizing adapted knowledge in domain transfer,

    Y . Hou and L. Zheng, “Visualizing adapted knowledge in domain transfer,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2021, pp. 13 824–13 833

  3. [1]

    Center-based 3d object detection and tracking,

    T. Yin, X. Zhou, and P. Krahenbuhl, “Center-based 3d object detection and tracking,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2021, pp. 11 784–11 793

  4. [2]

    Robofusion: Towards robust multi-modal 3d obiect detection via sam,

    Z. Song, G. Zhang, L. Liu, L. Yang, S. Xu, C. Jia, F. Jia, and L. Wang, “Robofusion: Towards robust multi-modal 3d obiect detection via sam,” arXiv preprint arXiv:2401.03907 , 2024

  5. [3]

    Pillarnext: Rethinking network designs for 3d object detection in lidar point clouds,

    J. Li, C. Luo, and X. Yang, “Pillarnext: Rethinking network designs for 3d object detection in lidar point clouds,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2023, pp. 17 567–17 576

  6. [4]

    Improving semantic analysis on point clouds via auxiliary supervision of local geometric priors,

    L. Tang, K. Chen, C. Wu, Y . Hong, K. Jia, and Z.-X. Yang, “Improving semantic analysis on point clouds via auxiliary supervision of local geometric priors,” IEEE Transactions on Cybernetics , vol. 52, no. 6, pp. 4949–4959, 2020

  7. [5]

    Mix-teaching: A simple, unified and effective semi-supervised learning framework for monocular 3d object detection,

    L. Yang, X. Zhang, J. Li, L. Wang, M. Zhu, C. Zhang, and H. Liu, “Mix-teaching: A simple, unified and effective semi-supervised learning framework for monocular 3d object detection,” IEEE Transactions on Circuits and Systems for Video Technology , vol. 33, no. 11, pp. 6832– 6844, 2023

  8. [6]

    Wsamf-net: Wavelet spatial attention-based multistream feedback network for single image dehazing,

    X. Song, D. Zhou, W. Li, H. Ding, Y . Dai, and L. Zhang, “Wsamf-net: Wavelet spatial attention-based multistream feedback network for single image dehazing,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 33, no. 2, pp. 575–588, 2022

Show all 72 references
  1. [7]

    V ox- elnextfusion: A simple, unified and effective voxel fusion framework for multi-modal 3d object detection,

    Z. Song, G. Zhang, J. Xie, L. Liu, C. Jia, S. Xu, and Z. Wang, “V ox- elnextfusion: A simple, unified and effective voxel fusion framework for multi-modal 3d object detection,” arXiv preprint arXiv:2401.02702 , 2024

  2. [8]

    Far3d: Expanding the horizon for surround-view 3d object detection,

    X. Jiang, S. Li, Y . Liu, S. Wang, F. Jia, T. Wang, L. Han, and X. Zhang, “Far3d: Expanding the horizon for surround-view 3d object detection,” in Proceedings of the AAAI Conference on Artificial Intelligence, vol. 38, no. 3, 2024, pp. 2561–2569

  3. [9]

    Pseudo-mono for monocular 3d object detection in autonomous driving,

    C. Tao, J. Cao, C. Wang, Z. Zhang, and Z. Gao, “Pseudo-mono for monocular 3d object detection in autonomous driving,” IEEE Transac- tions on Circuits and Systems for Video Technology , vol. 33, no. 8, pp. 3962–3975, 2023

  4. [10]

    Pipc-3ddet: Harnessing perspective information and proposal correlation for 3d point cloud object detection,

    C. Yu, B. Peng, Q. Huang, and J. Lei, “Pipc-3ddet: Harnessing perspective information and proposal correlation for 3d point cloud object detection,” IEEE Transactions on Circuits and Systems for Video Technology, 2023

  5. [11]

    Graphbev: Towards robust bev feature alignment for multi-modal 3d object detection,

    Z. Song, L. Yang, S. Xu, L. Liu, D. Xu, C. Jia, F. Jia, and L. Wang, “Graphbev: Towards robust bev feature alignment for multi-modal 3d object detection,” arXiv preprint arXiv:2403.11848 , 2024

  6. [12]

    Fusionpainting: Multimodal fusion with adaptive attention for 3d object detection,

    S. Xu, D. Zhou, J. Fang, J. Yin, Z. Bin, and L. Zhang, “Fusionpainting: Multimodal fusion with adaptive attention for 3d object detection,” in 2021 IEEE International Intelligent Transportation Systems Conference (ITSC). IEEE, 2021, pp. 3047–3054

  7. [13]

    Graphalign++: An accurate feature alignment by graph matching for multi-modal 3d object detection,

    Z. Song, C. Jia, L. Yang, H. Wei, and L. Liu, “Graphalign++: An accurate feature alignment by graph matching for multi-modal 3d object detection,” IEEE Transactions on Circuits and Systems for Video Technology, 2023

  8. [14]

    Multi- sem fusion: multimodal semantic fusion for 3d object detection,

    S. Xu, F. Li, Z. Song, J. Fang, S. Wang, and Z.-X. Yang, “Multi- sem fusion: multimodal semantic fusion for 3d object detection,” IEEE Transactions on Geoscience and Remote Sensing , 2024

  9. [15]

    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,” arXiv preprint arXiv:2206.10092 , 2022

  10. [16]

    Bevdistill: Cross-modal bev distillation for multi-view 3d object detection,

    Z. Chen, Z. Li, S. Zhang, L. Fang, Q. Jiang, and F. Zhao, “Bevdistill: Cross-modal bev distillation for multi-view 3d object detection,” arXiv preprint arXiv:2211.09386, 2022

  11. [17]

    Cross-modality knowledge distillation network for monocular 3d object detection,

    Y . Hong, H. Dai, and Y . Ding, “Cross-modality knowledge distillation network for monocular 3d object detection,” in European Conference on Computer Vision. Springer, 2022, pp. 87–104

  12. [18]

    Licrocc: Teach radar for accurate semantic occupancy prediction using lidar and camera,

    Y . Ma, J. Mei, X. Yang, L. Wen, W. Xu, J. Zhang, B. Shi, Y . Liu, and X. Zuo, “Licrocc: Teach radar for accurate semantic occupancy prediction using lidar and camera,” arXiv preprint arXiv:2407.16197 , 2024

  13. [19]

    Categorical depth distribution network for monocular 3d object detection,

    C. Reading, A. Harakeh, J. Chae, and S. L. Waslander, “Categorical depth distribution network for monocular 3d object detection,” in Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021, pp. 8555–8564

  14. [20]

    Bevdet: High-performance multi-camera 3d object detection in bird-eye-view,

    J. Huang, G. Huang, Z. Zhu, and D. Du, “Bevdet: High-performance multi-camera 3d object detection in bird-eye-view,” arXiv preprint arXiv:2112.11790, 2021

  15. [21]

    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

  16. [22]

    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,” in European Conference on Computer Vision . Springer, 2020, pp. 194–210

  17. [23]

    Bev- former: Learning bird’s-eye-view representation from multi-camera im- ages via spatiotemporal transformers,

    Z. Li, W. Wang, H. Li, E. Xie, C. Sima, T. Lu, Q. Yu, and J. Dai, “Bev- former: Learning bird’s-eye-view representation from multi-camera im- ages via spatiotemporal transformers,” arXiv preprint arXiv:2203.17270, 2022

  18. [24]

    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,” in Proceedings of the 5th Conference on Robot Learning , ser. Proceedings of Machine Learning Research, A. Faust, D. Hsu, and G. ...

  19. [25]

    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,” arXiv preprint arXiv:2203.05625, 2022

  20. [26]

    Petrv2: A unified framework for 3d perception from multi-camera images,

    Y . Liu, J. Yan, F. Jia, S. Li, Q. Gao, T. Wang, X. Zhang, and J. Sun, “Petrv2: A unified framework for 3d perception from multi-camera images,” arXiv preprint arXiv:2206.01256 , 2022

  21. [27]

    Exploring object- centric temporal modeling for efficient multi-view 3d object detection,

    S. Wang, Y . Liu, T. Wang, Y . Li, and X. Zhang, “Exploring object- centric temporal modeling for efficient multi-view 3d object detection,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 3621–3631

  22. [28]

    Sparse4d: Multi-view 3d object detection with sparse spatial-temporal fusion,

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

  23. [29]

    Sparse4d v2: Recurrent temporal fusion with sparse model,

    ——, “Sparse4d v2: Recurrent temporal fusion with sparse model,” arXiv preprint arXiv:2305.14018 , 2023. 12

  24. [30]

    Adabins: Depth estimation using adaptive bins,

    S. F. Bhat, I. Alhashim, and P. Wonka, “Adabins: Depth estimation using adaptive bins,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 4009–4018

  25. [31]

    Deep ordinal regression network for monocular depth estimation,

    H. Fu, M. Gong, C. Wang, K. Batmanghelich, and D. Tao, “Deep ordinal regression network for monocular depth estimation,” in Proceedings of the IEEE conference on computer vision and pattern recognition , 2018, pp. 2002–2011

  26. [33]

    On the uncertainty of self-supervised monocular depth estimation,

    M. Poggi, F. Aleotti, F. Tosi, and S. Mattoccia, “On the uncertainty of self-supervised monocular depth estimation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2020, pp. 3227–3237

  27. [34]

    Vision transformers for dense prediction,

    R. Ranftl, A. Bochkovskiy, and V . Koltun, “Vision transformers for dense prediction,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2021, pp. 12 179–12 188

  28. [35]

    Surrounddepth: Entangling surrounding views for self-supervised multi-camera depth estimation,

    Y . Wei, L. Zhao, W. Zheng, Z. Zhu, Y . Rao, G. Huang, J. Lu, and J. Zhou, “Surrounddepth: Entangling surrounding views for self-supervised multi-camera depth estimation,” arXiv preprint arXiv:2204.03636, 2022

  29. [36]

    Full surround monodepth from multiple cameras,

    V . Guizilini, I. Vasiljevic, R. Ambrus, G. Shakhnarovich, and A. Gaidon, “Full surround monodepth from multiple cameras,” IEEE Robotics and Automation Letters, vol. 7, no. 2, pp. 5397–5404, 2022

  30. [37]

    Ga-net: Guided aggregation net for end-to-end stereo matching,

    F. Zhang, V . Prisacariu, R. Yang, and P. H. Torr, “Ga-net: Guided aggregation net for end-to-end stereo matching,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2019, pp. 185–194

  31. [38]

    Cfnet: Cascade and fused cost volume for robust stereo matching,

    Z. Shen, Y . Dai, and Z. Rao, “Cfnet: Cascade and fused cost volume for robust stereo matching,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 13 906–13 915

  32. [39]

    Rethinking depth estimation for multi-view stereo: A unified representation,

    R. Peng, R. Wang, Z. Wang, Y . Lai, and R. Wang, “Rethinking depth estimation for multi-view stereo: A unified representation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 8645–8654

  33. [40]

    Can language understand depth?

    R. Zhang, Z. Zeng, Z. Guo, and Y . Li, “Can language understand depth?” in Proceedings of the 30th ACM International Conference on Multimedia, 2022, pp. 6868–6874

  34. [41]

    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?” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2021, pp. 3142–3152

  35. [43]

    Monodetr: Depth-guided transformer for monocular 3d object detection,

    ——, “Monodetr: Depth-guided transformer for monocular 3d object detection,” arXiv preprint arXiv:2203.13310 , 2022

  36. [44]

    Image style transfer using convolutional neural networks,

    L. A. Gatys, A. S. Ecker, and M. Bethge, “Image style transfer using convolutional neural networks,” in Proceedings of the IEEE conference on computer vision and pattern recognition , 2016, pp. 2414–2423

  37. [47]

    Paying more attention to attention: Improving the performance of convolutional neural networks via atten- tion transfer,

    S. Zagoruyko and N. Komodakis, “Paying more attention to attention: Improving the performance of convolutional neural networks via atten- tion transfer,” arXiv preprint arXiv:1612.03928 , 2016

  38. [48]

    Like what you like: Knowledge distill via neuron selectivity transfer,

    Z. Huang and N. Wang, “Like what you like: Knowledge distill via neuron selectivity transfer,” arXiv preprint arXiv:1707.01219 , 2017

  39. [49]

    Exploring inter-channel correlation for diversity-preserved knowledge distillation,

    L. Liu, Q. Huang, S. Lin, H. Xie, B. Wang, X. Chang, and X. Liang, “Exploring inter-channel correlation for diversity-preserved knowledge distillation,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2021, pp. 8271–8280

  40. [50]

    Similarity-preserving knowledge distillation,

    F. Tung and G. Mori, “Similarity-preserving knowledge distillation,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2019, pp. 1365–1374

  41. [51]

    Knowledge augmented deep neural networks for joint facial expression and action unit recognition,

    Z. Cui, T. Song, Y . Wang, and Q. Ji, “Knowledge augmented deep neural networks for joint facial expression and action unit recognition,” Ad- vances in Neural Information Processing Systems , vol. 33, pp. 14 338– 14 349, 2020

  42. [52]

    Spatio-temporal graph for video captioning with knowledge distillation,

    B. Pan, H. Cai, D.-A. Huang, K.-H. Lee, A. Gaidon, E. Adeli, and J. C. Niebles, “Spatio-temporal graph for video captioning with knowledge distillation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2020, pp. 10 870–10 879

  43. [53]

    Distillation with contrast is all you need for self-supervised point cloud representation learning,

    K. Fu, P. Gao, R. Zhang, H. Li, Y . Qiao, and M. Wang, “Distillation with contrast is all you need for self-supervised point cloud representation learning,” arXiv preprint arXiv:2202.04241 , 2022

  44. [54]

    Learning 3d representations from 2d pre-trained models via image-to-point masked autoencoders,

    R. Zhang, L. Wang, Y . Qiao, P. Gao, and H. Li, “Learning 3d representations from 2d pre-trained models via image-to-point masked autoencoders,” arXiv preprint arXiv:2212.06785 , 2022

  45. [55]

    Learning from 2d: Contrastive pixel-to-point knowledge transfer for 3d pretraining,

    Y .-C. Liu, Y .-K. Huang, H.-Y . Chiang, H.-T. Su, Z.-Y . Liu, C.-T. Chen, C.-Y . Tseng, and W. H. Hsu, “Learning from 2d: Contrastive pixel-to-point knowledge transfer for 3d pretraining,” arXiv preprint arXiv:2104.04687, 2021

  46. [56]

    Image-to-lidar self-supervised distillation for autonomous driving data,

    C. Sautier, G. Puy, S. Gidaris, A. Boulch, A. Bursuc, and R. Marlet, “Image-to-lidar self-supervised distillation for autonomous driving data,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 9891–9901

  47. [57]

    General instance distillation for object detection,

    X. Dai, Z. Jiang, Z. Wu, Y . Bao, Z. Wang, S. Liu, and E. Zhou, “General instance distillation for object detection,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021, pp. 7842–7851

  48. [58]

    Learning efficient object detection models with knowledge distillation,

    G. Chen, W. Choi, X. Yu, T. Han, and M. Chandraker, “Learning efficient object detection models with knowledge distillation,” Advances in neural information processing systems , vol. 30, 2017

  49. [59]

    Unidistill: A universal cross-modality knowledge distillation framework for 3d object detection in bird’s-eye view,

    S. Zhou, W. Liu, C. Hu, S. Zhou, and C. Ma, “Unidistill: A universal cross-modality knowledge distillation framework for 3d object detection in bird’s-eye view,” 2023 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pp. 5116–5125, 2023. [Online]. Availab...

  50. [60]

    Point-to-voxel knowledge distillation for lidar semantic segmentation,

    Y . Hou, X. Zhu, Y . Ma, C. C. Loy, and Y . Li, “Point-to-voxel knowledge distillation for lidar semantic segmentation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 8479–8488

  51. [61]

    Intra-class feature vari- ation distillation for semantic segmentation,

    Y . Wang, W. Zhou, T. Jiang, X. Bai, and Y . Xu, “Intra-class feature vari- ation distillation for semantic segmentation,” in European Conference on Computer Vision. Springer, 2020, pp. 346–362

  52. [62]

    Bev-lgkd: A unified lidar-guided knowledge distillation framework for bev 3d object detection,

    J. Li, M. Lu, J. Liu, Y . Guo, L. Du, and S. Zhang, “Bev-lgkd: A unified lidar-guided knowledge distillation framework for bev 3d object detection,” arXiv preprint arXiv:2212.00623 , 2022

  53. [63]

    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. Yoga- mani, 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 Recog...

  54. [64]

    Distillbev: Boosting multi-camera 3d object detection with cross-modal knowledge distil- lation,

    Z. Wang, D. Li, C. Luo, C. Xie, and X. Yang, “Distillbev: Boosting multi-camera 3d object detection with cross-modal knowledge distil- lation,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 8637–8646

  55. [65]

    Simdistill: Simulated multi-modal distillation for bev 3d object detection,

    H. Zhao, Q. Zhang, S. Zhao, Z. Chen, J. Zhang, and D. Tao, “Simdistill: Simulated multi-modal distillation for bev 3d object detection,” in Proceedings of the AAAI Conference on Artificial Intelligence , vol. 38, no. 7, 2024, pp. 7460–7468

  56. [66]

    Leveraging vision-centric multi-modal expertise for 3d object detec- tion,

    L. Huang, Z. Li, C. Sima, W. Wang, J. Wang, Y . Qiao, and H. Li, “Leveraging vision-centric multi-modal expertise for 3d object detec- tion,” arXiv preprint arXiv:2310.15670 , 2023

  57. [67]

    Distilling focal knowledge from imperfect expert for 3d object detection,

    J. Zeng, L. Chen, H. Deng, L. Lu, J. Yan, Y . Qiao, and H. Li, “Distilling focal knowledge from imperfect expert for 3d object detection,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 992–1001

  58. [68]

    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,” in 2023 IEEE international conference on robotics and automation (ICRA). IEEE, 2023, pp. 2774–2781

  59. [69]

    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,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 11 621–11 631

  60. [70]

    The pascal visual object classes (voc) challenge,

    M. Everingham, L. Van Gool, C. K. Williams, J. Winn, and A. Zisser- man, “The pascal visual object classes (voc) challenge,” International journal of computer vision , vol. 88, no. 2, pp. 303–338, 2010

  61. [71]

    Depth map prediction from a single image using a multi-scale deep network,

    D. Eigen, C. Puhrsch, and R. Fergus, “Depth map prediction from a single image using a multi-scale deep network,” Advances in neural information processing systems , vol. 27, 2014

  62. [72]

    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

  63. [73]

    A convnet for the 2020s,

    Z. Liu, H. Mao, C.-Y . Wu, C. Feichtenhofer, T. Darrell, and S. Xie, “A convnet for the 2020s,” in Proceedings of the IEEE/CVF Conference on 13 Computer Vision and Pattern Recognition (CVPR) , 2022, pp. 11 976– 11 986

  64. [74]

    Stxd: structural and temporal cross-modal distillation for multi-view 3d object detection,

    S. Jang, D. U. Jo, S. J. Hwang, D. Lee, and D. Ji, “Stxd: structural and temporal cross-modal distillation for multi-view 3d object detection,” Advances in Neural Information Processing Systems , vol. 36, 2024. Shaoqing Xu received his M.S. degree in transporta- tion engineeri...

Pith tools

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