REVIEW 4 major objections 5 minor 60 references
Radar Tracker: Moving Instance Tracking in Sparse and Noisy Radar Point Clouds
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A tracker that fuses per-point temporal offsets with attention-based appearance features achieves state-of-the-art moving-instance tracking in sparse radar point clouds.
desk verdict Solid radar tracking method, but the SOTA claim rests on an excluded baseline and single-run numbers. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is the per-point temporal offset prediction: for each radar point, the network regresses a vector to the center of its instance in the next scan, computed as the mean of the ground-truth points of that instance. Together with the standard offset to the current-scan center, this creates direct center-based tracks without voxelization or scan aggregation. The second mechanism is the attentive instance network, which applies local vector attention (using the Point Transformer's subtractive attention with relative positional encoding) to the moving points of each instance and aggregates them into a single instance feature vector. A similarity module then computes an attention matrix $A_{\text{sim}} = \text{sigmoid}(Q_{\text{sim}}K_{\text{sim}}^\top + R_{\text{sim}})$ that is converted into an appearance cost, and the data association clusters instances with DBSCAN and runs Hungarian matching locally, using the appearance cost only beyond a short-distance threshold.
What would settle it
Run the same tracker on radar sequences where most moving instances are single-point detections and compare the association score against a version that replaces the temporal-offset target with a velocity-based constant-motion prediction. If the association score drops to the level of the geometric-only baseline, the noisy next-scan center target is the bottleneck; alternatively, measuring track ID switches on scenes with two closely spaced pedestrians would test whether the appearance cost actually resolves geometric ambiguity.
Extended reading notes
Core claim
The paper's central claim is that a tracking-by-detection system for radar point clouds should associate instances using a cascade of geometric and appearance information rather than either alone. The geometric stage uses per-point temporal offsets to predict the next-scan center of each moving instance, making center-based Hungarian association viable in data where instances often consist of one or a few points. The appearance stage uses a transformer-based instance feature extractor and a sigmoid attention score to measure how likely two instances are the same object, which resolves the cases where geometry is ambiguous or objects interact. The final association switches from geometry-only to geometry-plus-appearance above a distance threshold, and the paper reports that this combined design outperforms the compared baselines on the RadarScenes moving-instance tracking benchmark.
Load-bearing premise
The method assumes that the average coordinate of the ground-truth points of an instance in the next scan is a reliable center target for every moving point, including instances that appear as a single point in the current scan.
Editorial extensions
If this is right
- The temporal offset prediction adds motion cues that improve moving-object segmentation IoU from 84.4 to 85.4 on the validation set, and the center-based association alone gains 0.7 points in association score.
- Attention-based appearance association is what closes long-distance or ambiguous matches: removing it and using only geometry at the 10 m threshold drops the association score from 54.3 to 52.2.
- The method operates on single scans rather than aggregated scans, so it avoids the latency of scan accumulation, which matters for safety-critical tasks like collision avoidance.
- Because the backbone is a separate moving-instance segmenter, the tracking modules can be attached to any other segmentation network, not only the one used here.
- On the RadarScenes test set, the approach reaches LSTQ 66.8 with an association score of 48.2, versus 59.3 for center tracking plus Hungarian, indicating the gain is concentrated in association quality rather than classification.
Reading between the lines
- If the combined association generalizes, radar-only perception stacks could provide reliable tracking in weather that disables cameras and LiDAR, since the method needs no dense point clouds or scan accumulation.
- The temporal-offset target (mean of next-scan instance points) is a noisy label for single-point instances; a testable extension would be to weight the offset loss by instance point count or predict a distribution over next centers instead of a single vector.
- The appearance similarity module could be trained with contrastive or metric losses to make instance features more discriminative, potentially pushing the association score further without changing the association logic.
- The reported numbers are on a single benchmark with one sensor setup; a natural falsifier is running the same pipeline on another radar dataset to see whether the 7.5-point gap over center-only tracking persists across sensor configurations.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper addresses moving instance tracking in sparse and noisy automotive radar point clouds. It extends the authors' Radar Instance Transformer (RIT) with two tracking-specific modules: a per-point temporal offset head that regresses each moving point to the center of its instance in the next scan, and an attention-based instance feature extractor that produces an appearance similarity cost. The final data association clusters instances with DBSCAN, performs Hungarian matching within clusters, and switches between geometric-only and combined geometric-appearance costs according to hand-set distance thresholds. Experiments on RadarScenes report LSTQ 66.8 with S_assoc 48.2, outperforming three implemented baselines, and ablations on the validation set support the contributions of the offset predictions and the attentive association.
Significance. If the experimental claims hold, the paper provides a sensible point-based alternative to voxelized or IoU-based trackers for radar, with a plausible mechanism for single-point instances (temporal offsets) and a modest but consistent improvement in association quality. The paper's strengths include evaluation on a public benchmark with a standard metric, implementation details sufficient for reproduction, and a set of ablations that isolate the main design choices. The main caveats are that the comparative claim rests on a selected baseline set, all numbers come from a single run, and several association thresholds are set manually without sensitivity analysis; these issues do not invalidate the method but currently temper the strength of the 'state-of-the-art' statement.
major comments (4)
- [Sec. IV-B, Table I] The abstract and Sec. I state that the approach achieves 'state-of-the-art performance' for moving instance tracking, but Table I compares only MOT [46], center tracking [49], and CA-Net [26]. The best-performing 4D panoptic method, Eq-4D-StOP [59], is excluded with the statement that its rotation augmentation is 'detrimental to radar data [29]'. The cited reference (View-of-Delft, Palffy et al.) does not evaluate Eq-4D-StOP, and no experiment quantifies the effect of rotation augmentation on this method. Because the headline claim is comparative, this exclusion is load-bearing. Please either add a fair adaptation of Eq-4D-StOP to the RadarScenes evaluation, provide direct evidence that it cannot be transferred, or rephrase the claim to 'improved performance over the implemented baselines'.
- [Sec. IV-A, Tables I-III] All results are reported for a single run, with no variance or significance measures. The ablation differences in Tables II and III are small (0.1-0.3 LSTQ or S_assoc points), which is within the range of typical seed-to-seed variation for transformer-based point cloud models. The main 7.5 LSTQ gap over center tracking (Table I) is therefore not yet distinguishable from evaluation-protocol or initialization effects. Please report mean and standard deviation over at least three seeds, or provide an alternative statistical analysis.
- [Sec. III-F] The data association contains several hand-set free parameters: the DBSCAN bandwidth b=10, the geometric/appearance thresholds t_d1=5 m and t_d2=10 m, the similarity cost threshold t_c=1.5, and the track retention length of 12 scans. No sensitivity analysis is provided. These parameters directly determine when the appearance cost is used and when tracks are initialized or dropped, and their values may have been chosen with knowledge of the validation set. Please include a sensitivity study over the main thresholds (at least t_d1, t_d2, t_c, b) and state explicitly whether any parameter was tuned on the test set.
- [Sec. III-B] The temporal offset target is defined as the mean coordinate of the ground-truth instance points in the next scan. For instances consisting of a single radar detection, this target is a single noisy point whose position can jump arbitrarily between frames, and the current ablation (Table II) does not isolate this case. Since the paper motivates the center-based association partly by the single-point-instance scenario, please add an analysis or ablation that reports performance as a function of instance size (e.g., single-point vs. multi-point instances) or otherwise demonstrates stability of the temporal-offset target. Without such evidence, the claim in Sec. III-C that the temporal offset provides a regression target for single-point instances is not quantitatively supported.
minor comments (5)
- [Sec. III-B, Eq. (7)] The notation in Eq. (7) is ambiguous: o_i is used for both offsets, and c_i is said to be 'the respective center of the instance that p_i belongs to', but for the temporal offset this must be the center in the next scan. Please define the standard and temporal offsets with distinct symbols in the loss equation.
- [Fig. 2] The figure shows W_K and W_Q but not W_V in the attentive instance network, whereas Eq. (1) defines W_V; please align the figure with the text.
- [References] The same workshop paper 4D-StOP appears as two separate references [20] and [21]; please merge them into a single citation.
- [Sec. IV-B] The center tracking baseline description says Doppler velocities are 'directly used' for tracking, but the procedure is not described; please specify whether velocities are used as motion model predictions, as gating, or as association features.
- [Sec. IV-D, Table III] The row 'Geometric association t_d2=10 m' is unclear; please clarify what 'geometric association' means in this ablation, for example whether it is the same pipeline with the appearance cost removed or a pure distance threshold without the attentive similarity.
Circularity Check
No significant circularity: the central tracking claim is an external benchmark comparison on the RadarScenes test set, and the learned offset and similarity components are supervised on ground-truth targets rather than fitted to the evaluation metric.
full rationale
The paper's main claim is comparative performance on the RadarScenes moving-instance tracking benchmark. The LSTQ metric is defined externally in 4D panoptic segmentation literature, and the reported test-set numbers are obtained by evaluating a trained model on held-out sequences. The temporal offset prediction in Sec. III-B is trained with the supervised L1 loss in Eq. (7) against ground-truth instance centers; the attention similarity in Eq. (5) is trained with a binary cross-entropy loss. Neither quantity is fitted to the LSTQ score or to the association threshold, so the 'prediction' is not equivalent to an input by construction. The paper does cite the authors' own Radar Instance Transformer [51] as the backbone and adopts its training settings, but RIT is prior published work with its own external evaluation on RadarScenes, and the baselines are instantiated with the same backbone to isolate the tracking contribution. This is a normal use of prior work rather than a load-bearing self-citation chain. The exclusion of Eq-4D-StOP [59] is a potential evidence gap for the 'state-of-the-art' wording, because the reason for exclusion is qualitative and cites a different radar dataset; however, that is a concern about comparison completeness and correctness risk, not circularity. Overall, no equation or fitted parameter reduces to the claimed result, and the central derivation is self-contained against an external benchmark.
Assumptions & free parameters
free parameters (6)
- similarity cost threshold t_c =
1.5
- distance threshold t_d1 =
5 m
- distance threshold t_d2 =
10 m
- DBSCAN bandwidth b =
10
- track retention length =
12 scans
- number of local attention neighbors N_l =
6
assumptions (6)
- standard math Hungarian algorithm returns an optimal bipartite matching for the local cost matrices.
- domain assumption DBSCAN clustering correctly groups nearby instances into local neighborhoods that contain no misleading global matches.
- domain assumption RadarScenes ground-truth instance IDs are temporally consistent, and the mean of instance points in the next scan is a valid regression target for the temporal offset.
- ad hoc to paper Excluding Eq-4D-StOP from the comparison because it uses large rotations of input point clouds is a valid reason, and no adaptation of that method to radar would change the ranking.
- domain assumption Training the model with ground-truth instance selection and evaluating it with predicted instances does not create a harmful train/evaluation mismatch.
- domain assumption LSTQ score adapted from [2] is a valid metric for radar moving-instance tracking, and scores across methods using the same backbone are comparable.
Cite this review
Pith. "Pith review of Radar Tracker: Moving Instance Tracking in Sparse and Noisy Radar Point Clouds." pith.science (2026). https://pith.science/paper/5PK3YQ2O
@misc{pith2026250703441,
author = {Pith},
title = {Pith review of: Radar Tracker: Moving Instance Tracking in Sparse and Noisy Radar Point Clouds},
year = {2026},
howpublished = {\url{https://pith.science/paper/5PK3YQ2O}},
note = {Machine review of arXiv:2507.03441}
}
read the original abstract
Robots and autonomous vehicles should be aware of what happens in their surroundings. The segmentation and tracking of moving objects are essential for reliable path planning, including collision avoidance. We investigate this estimation task for vehicles using radar sensing. We address moving instance tracking in sparse radar point clouds to enhance scene interpretation. We propose a learning-based radar tracker incorporating temporal offset predictions to enable direct center-based association and enhance segmentation performance by including additional motion cues. We implement attention-based tracking for sparse radar scans to include appearance features and enhance performance. The final association combines geometric and appearance features to overcome the limitations of center-based tracking to associate instances reliably. Our approach shows an improved performance on the moving instance tracking benchmark of the RadarScenes dataset compared to the current state of the art.
Figures
Reference graph
Works this paper leans on
- [29]
-
[46]
X. Weng, J. Wang, D. Held, and K. Kitani. 3d multi-object tracking: A baseline and new evaluation metrics. In Proc. of the IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS) , 2020
work page 2020
-
[49]
T. Yin, X. Zhou, and P. Kr ¨ahenb¨uhl. Center-Based 3D Object Detection and Tracking. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2021
work page 2021
-
[26]
R. Marcuzzi, L. Nunes, L. Wiesmann, I. Vizzo, J. Behley, and C. Stachniss. Contrastive Instance Association for 4D Panoptic Segmentation for Sequences of 3D LiDAR Scans. In Proc. of the IEEE Intl. Conf. on Robotics & Automation (ICRA) , 2022
work page 2022
-
[59]
M. Zhu, S. Han, H. Cai, S. Borse, M.G. Jadidi, and F. Porikli. 4D Panoptic Segmentation as Invariant and Equivariant Field Prediction. arXiv preprint, arXiv:2303.15651, 2023
work page Pith review arXiv 2023
-
[1]
A. Agarwalla, X. Huang, J. Ziglar, F. Ferroni, L. Leal-Taix ´e, J. Hays, A. Osep, and D. Ramanan. Lidar Panoptic Segmentation and Tracking without Bells and Whistles. In Proc. of the IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS) , 2023
work page 2023
-
[2]
M. Ayg ¨un, A. Osep, M. Weber, M. Maximov, C. Stachniss, J. Behley, and L. Leal-Taixe. 4D Panoptic Segmentation. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR), 2021
work page 2021
-
[3]
N. Benbarka, J. Schr ¨oder, and A. Zell. Score refinement for confidence-based 3D multi-object tracking. In Proc. of the IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS) , 2021
work page 2021
Show all 60 references
-
[4]
X. Chen, S. Li, B. Mersch, L. Wiesmann, J. Gall, J. Behley, and C. Stachniss. Moving Object Segmentation in 3D LiDAR Data: A Learning-based Approach Exploiting Sequential Data. IEEE Robotics and Automation Letters (RA-L) , 6(4):6529–6536, 2021
2021
-
[5]
Y . Chen, J. Liu, X. Zhang, X. Qi, and J. Jia. V oxelnext: Fully sparse voxelnet for 3d object detection and tracking. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR), 2023
2023
-
[6]
H.K. Chiu, A. Prioletti, J. Li, and J. Bohg. Probabilistic 3d multi-object tracking for autonomous driving. arXiv preprint , arXiv:2001.05673, 2020
2001 arXiv
-
[7]
C. Choy, J. Gwak, and S. Savarese. 4D Spatio-Temporal ConvNets: Minkowski Convolutional Neural Networks. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2019
2019
-
[8]
An algorithm for tracking multiple targets
D.B, Reid. An algorithm for tracking multiple targets. IEEE Trans. on Automatic Control , 24(6):843–854, 1979
1979
-
[9]
Dubey, A
A. Dubey, A. Santra, J. Fuchs, M. L ¨ubke, R. Weigel, and F. Lurz. HARadNet: Anchor-free target detection for radar point clouds using hierarchical attention and multi-task learning. Machine Learning with Applications (MLWA), 8:100275, 2022
2022
-
[10]
Ester, H
M. Ester, H. Kriegel, J. Sander, and X. Xu. A density-based algorithm for discovering clusters in large spatial databases with noise. In Proc. of the Conf. on Knowledge Discovery and Data Mining (KDD) , 1996
1996
-
[11]
M.H. Guo, J. Cai, Z.N. Liu, T.J. Mu, R.R. Martin, and S. Hu. PCT: Point Cloud Transformer. Computational Visual Media, 7(2):187–199, 2021
2021
-
[12]
F. Hong, H. Zhou, X. Zhu, H. Li, and Z. Liu. Lidar-based panoptic segmentation via dynamic shifting network. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2021
2021
-
[13]
F. Hong, H. Zhou, X. Zhu, H. Li, and Z. Liu. Lidar-based 4d panoptic segmentation via dynamic shifting network. arXiv preprint , arXiv:2203.07186, 2022
2022 arXiv
-
[14]
Huang, Z
S. Huang, Z. Gojcic, J. Huang, A. Wieser, and K. Schindler. Dynamic 3D Scene Analysis by Point Cloud Accumulation. In Proc. of the Europ. Conf. on Computer Vision (ECCV) , 2022
2022
-
[15]
L. Hui, L. Wang, L. Tang, K. Lan, J. Xie, and J. Yang. 3D Siamese transformer network for single object tracking on point clouds. In Proc. of the Europ. Conf. on Computer Vision (ECCV) , 2022
2022
-
[16]
Ioffe and C
S. Ioffe and C. Szegedy. Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift. In Proc. of the Intl. Conf. on Machine Learning (ICML) , 2015
2015
-
[17]
R. Kalman. A New Approach to Linear Filtering and Prediction Problems. Transactions of the ASME – Journal of Basic Engineering , 82:35–45, 1960
1960
-
[18]
D. Kim, S. Woo, J. Lee, and I.S. Kweon. Video Panoptic Segmenta- tion. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2020
2020
-
[19]
J. Kim, J. Woo, and Sunghoon. RVMOS: Range-View Moving Object Segmentation Leveraged by Semantic and Motion Features. IEEE Robotics and Automation Letters (RA-L) , 7(3):8044–8051, 2022
2022
-
[20]
Kreuzberg, I.E
L. Kreuzberg, I.E. Zulfikar, S. Mahadevan, F. Engelmann, and B. Leibe. 4d-stop: Panoptic segmentation of 4d lidar using spatio- temporal object proposal generation and aggregation. In Proc. of the Europ. Conf. on Computer Vision (ECCV) , 2022
2022
-
[21]
Kreuzberg, I.E
L. Kreuzberg, I.E. Zulfikar, S. Mahadevan, F. Engelmann, and B. Leibe. 4D-StOP: Panoptic Segmentation of 4D LiDAR using Spatio-temporal Object Proposal Generation and Aggregation. In Proc. of the Europ. Conf. on Computer Vision Workshops , 2022
2022
-
[22]
H. Kuhn. The hungarian method for the assignment problem. Naval Research Logistics Quarterly , 2(1-2):83–97, 1955
1955
-
[23]
J. Li, X. He, Y . Wen, Y . Gao, X. Cheng, and D. Zhang. Panoptic-phnet: Towards real-time and high-precision lidar panoptic segmentation via clustering pseudo heatmap. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2022
2022
-
[24]
Loshchilov and F
I. Loshchilov and F. Hutter. SGDR: Stochastic Gradient Descent with Warm Restarts. In Proc. of the Intl. Conf. on Learning Representations (ICLR), 2017
2017
-
[25]
Marcuzzi, L
R. Marcuzzi, L. Nunes, L. Wiesmann, J. Behley, and C. Stachniss. Mask-Based Panoptic LiDAR Segmentation for Autonomous Driving. IEEE Robotics and Automation Letters (RA-L) , 8(2):1141–1148, 2023
2023
-
[27]
Mersch, X
B. Mersch, X. Chen, I. Vizzo, L. Nunes, J. Behley, and C. Stachniss. Receding Moving Object Segmentation in 3D LiDAR Data Using Sparse 4D Convolutions. IEEE Robotics and Automation Letters (RA- L), 7(3):7503–7510, 2022
2022
-
[28]
Nair and G
V . Nair and G. Hinton. Rectified linear units improve restricted boltzmann machines. In Proc. of the Intl. Conf. on Machine Learning (ICML), 2010
2010
-
[30]
Z. Pang, Z. Li, and N. Wang. Simpletrack: Understanding and rethinking 3d multi-object tracking. In Proc. of the Europ. Conf. on Computer Vision (ECCV) , 2022
2022
-
[31]
C. Park, Y . Jeong, M. Cho, and J. Park. Fast Point Transformer. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2022
2022
-
[32]
Paszke, S
A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga, et al. Pytorch: An imperative style, high-performance deep learning library. In Proc. of the Conf. on Neural Information Processing Systems (NeurIPS) , 2019
2019
-
[33]
C.R. Qi, H. Su, K. Mo, and L.J. Guibas. PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation. In Proc. of the IEEE Conf. on Computer Vision and Pattern Recognition (CVPR) , 2017
2017
-
[34]
C. Qi, K. Yi, H. Su, and L.J. Guibas. PointNet++: Deep Hierarchical Feature Learning on Point Sets in a Metric Space. In Proc. of the Conf. on Neural Information Processing Systems (NeurIPS) , 2017
2017
-
[35]
H. Qiu, B. Yu, and D. Tao. GFNet: Geometric Flow Network for 3D Point Cloud Semantic Segmentation. Trans. on Machine Learning Research (TMLR), 2022
2022
-
[36]
Schult, F
J. Schult, F. Engelmann, A. Hermans, O. Litany, S. Tang, and B. Leibe. Mask3D: Mask Transformer for 3D Semantic Instance Segmentation. In Proc. of the IEEE Intl. Conf. on Robotics & Automation (ICRA) , 2023
2023
-
[37]
Schumann, M
O. Schumann, M. Hahn, J. Dickmann, and C. W ¨ohler. Semantic Segmentation on Radar Point Clouds. In Proc. of the Intl. Conf. on Information Fusion , 2018
2018
-
[38]
Schumann, M
O. Schumann, M. Hahn, N. Scheiner, F. Weishaupt, J.F. Tilly, J. Dick- mann, and C. W ¨ohler. RadarScenes: A real-world radar point cloud data set for automotive applications. In Proc. of the Intl. Conf. on Information Fusion , 2021
2021
-
[39]
Schumann, J
O. Schumann, J. Lombacher, M. Hahn, C. W ¨ohler, and J. Dickmann. Scene Understanding With Automotive Radar. IEEE Trans. on Intelligent V ehicles, 5(2):188–203, 2019
2019
-
[40]
Shi and K
Y . Shi and K. Ma. SAFIT: Segmentation-Aware Scene Flow with Improved Transformer. In Proc. of the IEEE Intl. Conf. on Robotics & Automation (ICRA) , 2022
2022
-
[41]
S. Su, J. Xu, H. Wang, Z. Miao, X. Zhan, D. Hao, and X. Li. PUPS: Point cloud unified panoptic segmentation. arXiv preprint , arXiv:2302.06185, 2023
2023 arXiv
-
[42]
J. Sun, Y . Dai, X. Zhang, J. Xu, R. Ai, W. Gu, and X. Chen. Efficient Spatial-Temporal Information Fusion for LiDAR-Based 3D Moving Object Segmentation. In Proc. of the IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS) , 2022
2022
-
[43]
Vaswani, N
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A.N. Gomez, Ł. Kaiser, and I. Polosukhin. Attention is all you need. In Proc. of the Conf. on Neural Information Processing Systems (NeurIPS), 2017
2017
-
[44]
T. Vu, K. Kim, T.M. Luu, T. Nguyen, and C.D. Yoo. SoftGroup for 3D Instance Segmentation on Point Clouds. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2022
2022
-
[45]
N. Wang, C. Shi, R. Guo, H. Lu, Z. Zheng, and X. Chen. InsMOS: Instance-Aware Moving Object Segmentation in LiDAR Data. arXiv preprint, arXiv:2303.03909, 2023
2023 arXiv
-
[47]
L. Xin, L. Jianhui, J. Li, W. Liwei, Z. Hengshuang, L. Shu, Q. Xi- aojuan, and J. Jiaya. Stratified Transformer for 3D Point Cloud Segmentation. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2022
2022
-
[48]
Xu, Y .C
T.X. Xu, Y .C. Guo, Y .K. Lai, and S.H. Zhang. CXTrack: Improving 3D point cloud tracking with contextual information. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR), 2023
2023
-
[50]
Zeller, J
M. Zeller, J. Behley, M. Heidingsfeld, and C. Stachniss. Gaussian Radar Transformer for Semantic Segmentation in Noisy Radar Data. IEEE Robotics and Automation Letters (RA-L) , 8(1):344–351, 2023
2023
-
[51]
Zeller, V .S
M. Zeller, V .S. Sandhu, B. Mersch, J. Behley, M. Heidingsfeld, and C. Stachniss. Radar Instance Transformer: Reliable Moving Instance Segmentation in Sparse Radar Point Clouds. IEEE Trans. on Robotics (TRO), pages 1–17, 2023
2023
-
[52]
Zeller, V .S
M. Zeller, V .S. Sandhu, B. Mersch, J. Behley, M. Heidingsfeld, and C. Stachniss. Radar Velocity Transformer: Single-scan Moving Object Segmentation in Noisy Radar Point Clouds. In Proc. of the IEEE Intl. Conf. on Robotics & Automation (ICRA) , 2023
2023
-
[53]
Zhang, C
C. Zhang, C. Zhang, Y . Guo, L. Chen, and M. Happold. Motiontrack: End-to-end transformer-based multi-object tracking with lidar-camera fusion. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition Workshops, 2023
2023
-
[54]
Zhang, H
C. Zhang, H. Wan, X. Shen, and Z. Wu. PVT: Point-voxel trans- former for point cloud learning. Intl. Journal of Intelligent Systems , 37(12):11985–12008, 2022
2022
-
[55]
Zhang, Z
Y . Zhang, Z. Zhou, P. David, X. Yue, Z. Xi, B. Gong, and H. Foroosh. Polarnet: An improved grid representation for online lidar point clouds semantic segmentation. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2020
2020
-
[56]
H. Zhao, J. Jia, and V . Koltun. Exploring self-attention for image recognition. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2020
2020
-
[57]
H. Zhao, L. Jiang, J. Jia, P.H. Torr, and V . Koltun. Point Transformer. In Proc. of the IEEE/CVF Intl. Conf. on Computer Vision (ICCV) , 2021
2021
-
[58]
Y . Zhou, L. Liu, H. Zhao, M. L ´opez-Ben´ıtez, L. Yu, and Y . Yue. Towards Deep Radar Perception for Autonomous Driving: Datasets, Methods, and Challenges. Sensors, 22, 2022
2022
-
[60]
X. Zhu, H. Zhou, T. Wang, F. Hong, Y . Ma, W. Li, H. Li, and D. Lin. Cylindrical and asymmetrical 3d convolution networks for lidar segmentation. In Proc. of the IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR) , 2021
2021
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.