REVIEW 4 major objections 6 minor 60 references
PD-SORT: Occlusion-Robust Multi-Object Tracking Using Pseudo-Depth Cues
T0 review · 4 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read Pseudo-depth cues added to a Kalman filter resolve occlusion ambiguities in multi-object tracking, lifting DanceTrack HOTA from 54.6 to 58.2.
desk verdict Solid incremental MOT work with honest benchmark gains, but the pseudo-depth is a transform of the box bottom and the paper oversells the novelty of the depth cue. 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 complementary-view pseudo-depth, $pd = 2 \times \mathrm{IMG}_h - Y_b$, which maps a box's bottom-row coordinate to a distance-like quantity that never goes negative at image boundaries. This single number is reused in three places: it is appended to the Kalman state along with its velocity $v_{pd}$; it becomes the third dimension in DVIoU, turning 2D area overlap into volume overlap; and it is binned into intervals by QPDM, so association compares coarse depth order rather than potentially noisy exact values. The same pseudo-depth also makes the recovery stage more selective, because DVIoU between a lost tracklet's last observation and a candidate detection now requires depth agreement as well as spatial overlap.
What would settle it
Run PD-SORT against its baseline on a scene where the camera is at ground level looking up at objects on a balcony or stairs, so that box-bottom position no longer tracks true distance; if HOTA and AssA gains disappear or reverse, the reported improvement is coming from the flat-ground pseudo-depth cue.
Extended reading notes
Core claim
The central claim is that a purely geometric depth proxy, computed from each 2D bounding box, can carry much of the association burden in tracking-by-detection when appearance is uninformative and motion is non-linear. PD-SORT takes the pseudo-depth $pd = 2 \times \mathrm{IMG}_h - Y_b$ (distance from the box bottom to the bottom of an imaginary complementary view) and treats it as a real motion state: the Kalman state grows from $[x_c, y_c, s, r, v_x, v_y, v_s]$ to $[x_c, y_c, pd, s, r, v_x, v_y, v_{pd}, v_s]$. It then replaces 2D IoU with depth-volume IoU (DVIoU) in both the regular association and the lost-tracklet recovery, and adds a quantized pseudo-depth measurement (QPDM) that compares which of eight depth intervals each tracklet and detection falls into rather than comparing raw depth values. On DanceTrack test the result is HOTA 58.2 versus 54.6 for the OC-SORT baseline, with more modest gains on MOT17 and MOT20; the paper attributes the margin specifically to the depth cue disambiguating boxes that overlap heavily in 2D but sit at different depths.
Load-bearing premise
The method depends on the camera being above a flat ground plane with all tracked objects standing on it, so that the bottom edge of each bounding box honestly encodes distance; if that geometry fails, the pseudo-depth cue becomes misleading.
Editorial extensions
If this is right
- Motion-only trackers inherit an occlusion-resolving cue without adding detectors, ReID models, or depth sensors.
- Because the changes are confined to the Kalman state and the cost matrix, other SORT-family trackers should be able to adopt the same pseudo-depth extension directly.
- The DanceTrack margin (+3.6 HOTA) indicates that in uniform-appearance, nonlinear-motion scenes, much of the association error was resolvable by depth order alone.
- The modest MOT17 and MOT20 gains suggest the main benefit appears where 2D overlap is ambiguous, while simpler scenes gain only slightly.
Reading between the lines
- My inference: because QPDM compares only coarse depth intervals, the active ingredient may be relative depth order rather than absolute depth; the authors do not test this separation.
- My inference: the flat-ground assumption means the method's advantage should shrink on drone or elevated-camera footage; a direct benchmark there would define the method's operating envelope.
- My inference: replacing the geometric pseudo-depth with a learned monocular depth estimate would test whether depth quality is the ceiling; if gains grow, the paper's cue is a floor, not a limit.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes PD-SORT, an online, real-time, motion-based multi-object tracker built on OC-SORT. The authors extend the Kalman filter state with a pseudo-depth value defined as an affine function of the bounding box bottom row, introduce a Depth Volume IoU (DVIoU) that reweights 2D IoU by this pseudo-depth, and add a Quantized Pseudo-Depth Measurement (QPDM) cost based on min-max normalized, interval-quantized pseudo-depth values. Camera motion compensation is also integrated. The method is evaluated on DanceTrack, MOT17, and MOT20 under the private-detection protocol, reporting consistent improvements over OC-SORT, most notably +3.6 HOTA on DanceTrack, alongside component ablations on the DanceTrack validation set.
Significance. If the central claim is taken at face value, the paper would provide a simple, real-time, appearance-free tracker that improves occlusion robustness by integrating a depth-like cue into the motion model. The empirical work is substantial: benchmark results are from official MOT servers, the baseline and proposed method share the same detections, and the ablations show monotone gains from each added module. The paper also ships code and reports runtime. However, the significance is substantially qualified by the fact that the pseudo-depth is a deterministic affine transform of the bounding box bottom row, which is already implied by the existing Kalman state. This makes the 'depth' interpretation, and the claim that depth supplies new discriminative information, not supported by the current presentation. The observed gains may be real and reproducible, but they are better described as gains from an engineered bottom-row consistency feature rather than from a genuinely independent depth measurement.
major comments (4)
- [Section III-A, Eq. (1) and Eq. (3)] The pseudo-depth defined as pd = 2*IMGh - Yb is an affine, monotonically decreasing function of the detection's bottom row Yb. Since Yb is fully determined by the existing Kalman state (xc, yc, s, r) through the box relation (Yb = yc + 0.5*sqrt(s/r)), the augmented state X = [xc, yc, pd, s, r, vx, vy, vpd, vs] treats a derived coordinate as an independent state. The Kalman filter's diagonal process and measurement noise covariances therefore encode a constraint that does not match the data-generating process; the augmented state is internally redundant. The paper should either provide a principled justification for why the derived coordinate should be modeled as an independent state with its own velocity, or reframe the contribution as using bottom-row consistency within the existing state space.
- [Section III-C, Eq. (7) and Algorithm 1] The min-max normalization in QPDM is invariant to affine monotone transformations of the input. Because pd = C - Yb with constant C = 2*IMGh, normalizing pd yields (Yb_max - Yb)/(Yb_max - Yb_min), which is exactly the reversed normalized bottom row. Consequently, QPDM is indistinguishable from quantized bottom-row consistency; it does not use depth information beyond what is already present in the 2D box. The ablation in Table V demonstrates that quantization helps, but it does not support the claim that the pseudo-depth interpretation provides extra discriminative information. The authors should add a comparison where the same QPDM pipeline is applied directly to Yb, or to a genuinely independent depth estimate, to isolate the source of the gains.
- [Section III-B, Eq. (4)-(6)] DVIoU is not a three-dimensional volume IoU in any geometric sense; the 'depth volume' is the 2D intersection area multiplied by a scalar that is an affine function of the box bottom row (pd = C - Yb). Thus DVIoU is a reweighting of the standard 2D IoU by a Yb-dependent factor, not an intersection over union computed in a space with an independent depth axis. The improvement over standard IoU in Table VI may be a legitimate empirical effect, but the 'depth volume' terminology is misleading. The authors should either rename DVIoU to reflect its actual form or provide evidence that the geometric interpretation as a 3D volume is consequential, for example by comparing against an equivalent reweighting based directly on Yb.
- [Abstract and Section I] The central claim that pseudo-depth 'significantly alleviates the occlusion-induced ambiguous associations' implies that depth is a new cue. Given that the pseudo-depth is a deterministic transform of an existing 2D box coordinate, the benchmark improvements on DanceTrack do not by themselves demonstrate that a depth cue is responsible. A concrete test would be to rerun PD-SORT with the pseudo-depth everywhere replaced by Yb (or by an independent monocular depth estimate) and compare the metrics. Without such an experiment, the novelty claim that this is the first work to incorporate depth as a state in a pure motion-based 2D MOT is overstated.
minor comments (6)
- [Section I, last paragraph of Introduction] The phrase 'We inherent the observation-centric idea' should be 'We inherit'; the same typo appears in Section III-E.
- [Eq. (4)] The formula for winter contains a typo: 'max(x1_1 - x2_1)' should be 'max(x1_1, x2_1)' (the max of the two left coordinates), otherwise the expression is dimensionally inconsistent.
- [Algorithm 1, lines 7 and 15] In the QPDM pseudocode, 'minprevious ← 1' inside the loop should be 'minprevious ← mincurrent' (or the equivalent) to advance the interval lower bound; as written, all intervals are tested against [1, mincurrent] repeatedly, which does not match the interval subdivision described in the text.
- [Section IV-C-1, first paragraph] The text reads 'the pesudo-depth' – spelling should be 'pseudo-depth'.
- [Section IV-B-2, computational efficiency] The sentence 'we test the frames per second (FPS) of our method (28.7 FPS) and the baseline (35.1 FPS) on on the same device' contains a duplicated 'on' and should be reworded.
- [Section III-C, heading and text] The abbreviation for Depth Volume IoU is inconsistently written as 'DvIoU' in the section heading and 'DVIoU' elsewhere; the notation should be unified.
Circularity Check
Mild attribution circularity: 'pseudo-depth' is, by the paper's own Eq. 1, an affine transform of the box-bottom row, so the depth cue adds no new measurement; the headline benchmark results are externally evaluated and not forced.
-
renaming known result
[Section III-A, Eq. 1; claims in Section IV-B2 and Fig. 2 caption]
"For the definition of pseudo-depth, as in SparseTrack [15], we first used the projection of depth ... our pseudo-depth pd is computed as in Eq. 1. pd = 2 × IMGh − Yb (1) ... Nevertheless, we use pseudo-depth to provide additional cues for association."
By the paper's own Eq. 1, pd is a deterministic affine (monotone decreasing) function of the detection's bottom row Yb, which is itself fixed by the 2D bounding box already in the SORT measurement stream (Yb = yc + h/2, with h determined by s and r of Eq. 2). The KF state in Eq. 3 therefore appends no new measurement to the observation stream. QPDM's frame-wise min-max normalization (Eq. 7) is invariant under affine monotone transforms of pd, making the C_QPD cost (Eq. 8) equivalent to quantized bottom-row consistency; DVIoU (Eqs. 4–6) merely reweights 2D IoU by a monotone function of Yb.
full rationale
PD-SORT's headline results (DanceTrack HOTA 58.2 vs OC-SORT 54.6; MOT17 +0.8 HOTA; MOT20 +0.5 HOTA) are measured on official test servers under the private-detection protocol with detections shared with the baseline. No self-citation is load-bearing: all references are external, SparseTrack's projection-based pseudo-depth is properly attributed, and OC-SORT, BoT-SORT, and ByteTrack are third-party baselines. No fitted parameter is renamed as a prediction: the QPDM weight, OCM weight, and interval count are validation-set hyperparameters reported on held-out test sets, which is standard practice. The one reductive element is definitional: Eq. 1 makes pd = 2*IMGh − Yb, a deterministic affine transform of the box-bottom row, so the KF's appended 'depth' state (Eq. 3) carries no information beyond (yc, s, r); QPDM's frame-wise min-max normalization (Eq. 7) is invariant to that affine transform, making the C_QPD cost (Eq. 8) equivalent to quantized bottom-row consistency, and DVIoU (Eqs. 4–6) reweights 2D IoU by a monotone function of Yb. Sections IV-B2 and Fig. 2 attribute the gains to depth supplying 'additional cues' and compensating 'when 2D information fails,' which the paper's own equations show is the same 2D box-bottom signal renamed. This is a novelty/attribution overstatement rather than a circular derivation of the results, since the numbers themselves are not forced by construction; hence a low score.
Assumptions & free parameters
free parameters (4)
- lambda_1 (QPDM weight) =
0.2 (DanceTrack, MOT17), 0.36 (MOT20)
- lambda_2 (OCM weight) =
0.2 (DanceTrack, MOT17), 0.04 (MOT20)
- interval_num (QPDM sub-intervals) =
8
- IoU association threshold =
0.3 (DanceTrack, MOT17), 0.35 (MOT20)
assumptions (4)
- domain assumption Pseudo-depth validity: the camera is above the ground plane and all objects are on the same plane.
- domain assumption Relative depth of an object with respect to others fluctuates only in narrow intervals across consecutive frames.
- domain assumption The constant-velocity Kalman filter process model is adequate for the pseudo-depth and its velocity.
- domain assumption Detector outputs are consistent and reliable.
Cite this review
Pith. "Pith review of PD-SORT: Occlusion-Robust Multi-Object Tracking Using Pseudo-Depth Cues." pith.science (2026). https://pith.science/paper/TB23WGDR
@misc{pith2026250111288,
author = {Pith},
title = {Pith review of: PD-SORT: Occlusion-Robust Multi-Object Tracking Using Pseudo-Depth Cues},
year = {2026},
howpublished = {\url{https://pith.science/paper/TB23WGDR}},
note = {Machine review of arXiv:2501.11288}
}
read the original abstract
Multi-object tracking (MOT) is a rising topic in video processing technologies and has important application value in consumer electronics. Currently, tracking-by-detection (TBD) is the dominant paradigm for MOT, which performs target detection and association frame by frame. However, the association performance of TBD methods degrades in complex scenes with heavy occlusions, which hinders the application of such methods in real-world scenarios.To this end, we incorporate pseudo-depth cues to enhance the association performance and propose Pseudo-Depth SORT (PD-SORT). First, we extend the Kalman filter state vector with pseudo-depth states. Second, we introduce a novel depth volume IoU (DVIoU) by combining the conventional 2D IoU with pseudo-depth. Furthermore, we develop a quantized pseudo-depth measurement (QPDM) strategy for more robust data association. Besides, we also integrate camera motion compensation (CMC) to handle dynamic camera situations. With the above designs, PD-SORT significantly alleviates the occlusion-induced ambiguous associations and achieves leading performances on DanceTrack, MOT17, and MOT20. Note that the improvement is especially obvious on DanceTrack, where objects show complex motions, similar appearances, and frequent occlusions. The code is available at https://github.com/Wangyc2000/PD_SORT.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Exploring simple 3d multi-object tracking for autonomous driving,
C. Luo, X. Yang, and A. Yuille, “Exploring simple 3d multi-object tracking for autonomous driving,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , 2021, pp. 10 488–10 497
work page 2021
-
[2]
Multi-object tracking co- processor for multi-channel embedded dvr systems,
S. Kim, B.-j. Lee, J.-w. Jeong, and M.-j. Lee, “Multi-object tracking co- processor for multi-channel embedded dvr systems,” IEEE transactions on Consumer Electronics , vol. 58, no. 4, pp. 1366–1374, 2012
work page 2012
-
[3]
A novel tracking algorithm using thermal and optical cameras fused with mmwave radar sensor data,
B. Iepure and A. W. Morales, “A novel tracking algorithm using thermal and optical cameras fused with mmwave radar sensor data,” IEEE Transactions on Consumer Electronics , vol. 67, no. 4, pp. 372–382, 2021
work page 2021
-
[4]
Bandt: A border-aware network with deformable transformers for visual tracking,
K. Yang, H. Zhang, J. Shi, and J. Ma, “Bandt: A border-aware network with deformable transformers for visual tracking,” IEEE Transactions on Consumer Electronics , vol. 69, no. 3, pp. 377–390, 2023
work page 2023
-
[5]
Human video instance segmen- tation and tracking via data association and single-stage detector,
M. Zhao, L. Cheng, Y . Sun, and J. Ma, “Human video instance segmen- tation and tracking via data association and single-stage detector,” IEEE Transactions on Consumer Electronics , vol. 70, no. 1, pp. 2979–2988, 2024
work page 2024
-
[6]
Simple online and realtime tracking,
A. Bewley, Z. Ge, L. Ott, F. Ramos, and B. Upcroft, “Simple online and realtime tracking,” in 2016 IEEE International Conference on Image Processing (ICIP). IEEE, 2016, pp. 3464–3468
work page 2016
-
[7]
High-speed tracking-by- detection without using image information,
E. Bochinski, V . Eiselein, and T. Sikora, “High-speed tracking-by- detection without using image information,” in 2017 14th IEEE Inter- national Conference on Advanced Video and Signal based Surveillance (A VSS). IEEE, 2017, pp. 1–6
work page 2017
-
[8]
Simple online and realtime tracking with a deep association metric,
N. Wojke, A. Bewley, and D. Paulus, “Simple online and realtime tracking with a deep association metric,” in 2017 IEEE International Conference on Image Processing (ICIP) . IEEE, 2017, pp. 3645–3649
work page 2017
Show all 60 references
-
[9]
Bytetrack: Multi-object tracking by associating every detection box,
Y . Zhang, P. Sun, Y . Jiang, D. Yu, F. Weng, Z. Yuan, P. Luo, W. Liu, and X. Wang, “Bytetrack: Multi-object tracking by associating every detection box,” in European Conference on Computer Vision . Springer, 2022, pp. 1–21
2022
-
[10]
Observation- centric sort: Rethinking sort for robust multi-object tracking,
J. Cao, J. Pang, X. Weng, R. Khirodkar, and K. Kitani, “Observation- centric sort: Rethinking sort for robust multi-object tracking,” in Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 9686–9696
2023
-
[11]
Faster r-cnn: Towards real-time object detection with region proposal networks,
S. Ren, K. He, R. Girshick, and J. Sun, “Faster r-cnn: Towards real-time object detection with region proposal networks,” Advances in Neural Information Processing Systems , vol. 28, 2015
2015
-
[12]
Yolox: Exceeding yolo series in 2021,
Z. Ge, S. Liu, F. Wang, Z. Li, and J. Sun, “Yolox: Exceeding yolo series in 2021,” arXiv preprint arXiv:2107.08430 , 2021
2021 arXiv
-
[13]
On implementing 2d rectangular assignment algorithms,
D. F. Crouse, “On implementing 2d rectangular assignment algorithms,” IEEE Transactions on Aerospace and Electronic Systems , vol. 52, no. 4, pp. 1679–1696, 2016
2016
-
[14]
Dancetrack: Multi-object tracking in uniform appearance and diverse motion,
P. Sun, J. Cao, Y . Jiang, Z. Yuan, S. Bai, K. Kitani, and P. Luo, “Dancetrack: Multi-object tracking in uniform appearance and diverse motion,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 20 993–21 002
2022
-
[15]
Sparsetrack: Multi- object tracking by performing scene decomposition based on pseudo- depth,
Z. Liu, X. Wang, C. Wang, W. Liu, and X. Bai, “Sparsetrack: Multi- object tracking by performing scene decomposition based on pseudo- depth,” arXiv preprint arXiv:2306.05238 , 2023
2023 arXiv
-
[16]
Contributions to the theory of optimal control,
R. E. Kalman et al. , “Contributions to the theory of optimal control,” Bol. soc. mat. mexicana , vol. 5, no. 2, pp. 102–119, 1960
1960
-
[17]
Generalized intersection over union: A metric and a loss for bound- ing box regression,
H. Rezatofighi, N. Tsoi, J. Gwak, A. Sadeghian, I. Reid, and S. Savarese, “Generalized intersection over union: A metric and a loss for bound- ing box regression,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2019, pp. 658–666
2019
-
[18]
Bot-sort: Robust associa- tions multi-pedestrian tracking,
N. Aharon, R. Orfaig, and B.-Z. Bobrovsky, “Bot-sort: Robust associa- tions multi-pedestrian tracking,” arXiv preprint arXiv:2206.14651, 2022
2022 arXiv
-
[19]
Transtrack: Multiple object tracking with transformer,
P. Sun, J. Cao, Y . Jiang, R. Zhang, E. Xie, Z. Yuan, C. Wang, and P. Luo, “Transtrack: Multiple object tracking with transformer,” arXiv preprint arXiv:2012.15460, 2020
2012 arXiv
-
[20]
Track- former: Multi-object tracking with transformers,
T. Meinhardt, A. Kirillov, L. Leal-Taixe, and C. Feichtenhofer, “Track- former: Multi-object tracking with transformers,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 8844–8854
2022
-
[21]
Motr: End-to-end multiple-object tracking with transformer,
F. Zeng, B. Dong, Y . Zhang, T. Wang, X. Zhang, and Y . Wei, “Motr: End-to-end multiple-object tracking with transformer,” in European Conference on Computer Vision . Springer, 2022, pp. 659–675
2022
-
[22]
Yolov3: An incremental improvement,
J. Redmon and A. Farhadi, “Yolov3: An incremental improvement,” arXiv preprint arXiv:1804.02767 , 2018
2018 arXiv
-
[23]
Learnable graph matching: Incorporating graph partitioning with deep feature learning for multi- ple object tracking,
J. He, Z. Huang, N. Wang, and Z. Zhang, “Learnable graph matching: Incorporating graph partitioning with deep feature learning for multi- ple object tracking,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 5299–5309
2021
-
[24]
The hungarian method for the assignment problem,
H. W. Kuhn, “The hungarian method for the assignment problem,” Naval Research Logistics Quarterly , vol. 2, no. 1-2, pp. 83–97, 1955
1955
-
[25]
Similarity based person re- identification for multi-object tracking using deep siamese network,
H. Suljagic, E. Bayraktar, and N. Celebi, “Similarity based person re- identification for multi-object tracking using deep siamese network,” Neural Computing and Applications , vol. 34, no. 20, pp. 18 171–18 182, 2022
2022
-
[26]
A strong baseline and batch normalization neck for deep person re-identification,
H. Luo, W. Jiang, Y . Gu, F. Liu, X. Liao, S. Lai, and J. Gu, “A strong baseline and batch normalization neck for deep person re-identification,” IEEE Transactions on Multimedia, vol. 22, no. 10, pp. 2597–2609, 2020
2020
-
[27]
Fastreid: A pytorch toolbox for general instance re-identification,
L. He, X. Liao, W. Liu, X. Liu, P. Cheng, and T. Mei, “Fastreid: A pytorch toolbox for general instance re-identification,” in Proceedings of the 31st ACM International Conference on Multimedia , 2023, pp. 9664–9667
2023
-
[28]
Towards real-time multi-object tracking,
Z. Wang, L. Zheng, Y . Liu, Y . Li, and S. Wang, “Towards real-time multi-object tracking,” in European Conference on Computer Vision . Springer, 2020, pp. 107–122
2020
-
[29]
Fairmot: On the fairness of detection and re-identification in multiple object tracking,
Y . Zhang, C. Wang, X. Wang, W. Zeng, and W. Liu, “Fairmot: On the fairness of detection and re-identification in multiple object tracking,” International Journal of Computer Vision , vol. 129, pp. 3069–3087, 2021
2021
-
[30]
Strong- sort: Make deepsort great again,
Y . Du, Z. Zhao, Y . Song, Y . Zhao, F. Su, T. Gong, and H. Meng, “Strong- sort: Make deepsort great again,” IEEE Transactions on Multimedia , 2023
2023
-
[31]
Stat: Multi-object tracking based on spatio-temporal topological constraints,
J. Zhang, M. Wang, H. Jiang, X. Zhang, C. Yan, and D. Zeng, “Stat: Multi-object tracking based on spatio-temporal topological constraints,” IEEE Transactions on Multimedia , 2023
2023
-
[32]
Fast re-obj: Real-time object re- identification in rigid scenes,
E. Bayraktar, Y . Wang, and A. DelBue, “Fast re-obj: Real-time object re- identification in rigid scenes,” Machine Vision and Applications , vol. 33, no. 6, p. 97, 2022
2022
-
[33]
Ab3dmot: A baseline for 3d multi-object tracking and new evaluation metrics,
X. Weng, J. Wang, D. Held, and K. Kitani, “Ab3dmot: A baseline for 3d multi-object tracking and new evaluation metrics,” arXiv preprint arXiv:2008.08063, 2020
2008 arXiv
-
[34]
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
2021
-
[35]
Eagermot: 3d multi-object tracking via sensor fusion,
A. Kim, A. O ˇsep, and L. Leal-Taix ´e, “Eagermot: 3d multi-object tracking via sensor fusion,” in 2021 IEEE International conference on Robotics and Automation (ICRA) . IEEE, 2021, pp. 11 315–11 321
2021
-
[36]
Quo vadis: Is trajectory forecasting the key towards long-term multi-object track- ing?
P. Dendorfer, V . Yugay, A. Osep, and L. Leal-Taix ´e, “Quo vadis: Is trajectory forecasting the key towards long-term multi-object track- ing?” Advances in Neural Information Processing Systems , vol. 35, pp. 15 657–15 671, 2022
2022
-
[37]
Depth perspective-aware multiple object tracking,
K. G. Quach, P. Nguyen, C. N. Duong, T. D. Bui, and K. Luu, “Depth perspective-aware multiple object tracking,” in Engineering Applications of AI and Swarm Intelligence . Springer, 2024, pp. 181–205
2024
-
[38]
The opencv library
G. Bradski, “The opencv library.” Dr . Dobb’s Journal: Software Tools for the Professional Programmer , vol. 25, no. 11, pp. 120–123, 2000
2000
-
[39]
Good features to track,
J. Shi and Tomasi, “Good features to track,” in Proceedings of IEEE Conference on Computer Vision and Pattern Recognition, 1994, pp. 593– 600
1994
-
[40]
Pyramidal implementation of the affine lucas kanade feature tracker description of the algorithm,
J.-Y . Bouguet et al. , “Pyramidal implementation of the affine lucas kanade feature tracker description of the algorithm,” Intel corporation , vol. 5, no. 1-10, p. 4, 2001
2001
-
[41]
Random sample consensus: a paradigm for model fitting with applications to image analysis and automated cartography,
M. A. Fischler and R. C. Bolles, “Random sample consensus: a paradigm for model fitting with applications to image analysis and automated cartography,” Communications of the ACM , vol. 24, no. 6, pp. 381–395, 1981
1981
-
[42]
Mot16: A benchmark for multi-object tracking,
A. Milan, L. Leal-Taix ´e, I. Reid, S. Roth, and K. Schindler, “Mot16: A benchmark for multi-object tracking,” arXiv preprint arXiv:1603.00831 , 2016
2016 arXiv
-
[43]
Mot20: A bench- mark for multi object tracking in crowded scenes,
P. Dendorfer, H. Rezatofighi, A. Milan, J. Shi, D. Cremers, I. Reid, S. Roth, K. Schindler, and L. Leal-Taix ´e, “Mot20: A bench- mark for multi object tracking in crowded scenes,” arXiv preprint arXiv:2003.09003, 2020
2003 arXiv
-
[44]
Hota: A higher order metric for evaluating multi-object tracking,
J. Luiten, A. Osep, P. Dendorfer, P. Torr, A. Geiger, L. Leal-Taix ´e, and B. Leibe, “Hota: A higher order metric for evaluating multi-object tracking,” International Journal of Computer Vision , vol. 129, pp. 548– 578, 2021
2021
-
[45]
Evaluating multiple object tracking performance: the clear mot metrics,
K. Bernardin and R. Stiefelhagen, “Evaluating multiple object tracking performance: the clear mot metrics,” EURASIP Journal on Image and Video Processing, vol. 2008, pp. 1–10, 2008. JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2021 13
2008
-
[46]
Performance measures and a data set for multi-target, multi-camera tracking,
E. Ristani, F. Solera, R. Zou, R. Cucchiara, and C. Tomasi, “Performance measures and a data set for multi-target, multi-camera tracking,” in European conference on computer vision . Springer, 2016, pp. 17–35
2016
-
[47]
Track to detect and segment: An online multi-object tracker,
J. Wu, J. Cao, L. Song, Y . Wang, M. Yang, and J. Yuan, “Track to detect and segment: An online multi-object tracker,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 12 352–12 361
2021
-
[48]
Global tracking transformers,
X. Zhou, T. Yin, V . Koltun, and P. Kr ¨ahenb¨uhl, “Global tracking transformers,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 8771–8780
2022
-
[49]
Tracking objects as points,
X. Zhou, V . Koltun, and P. Kr ¨ahenb¨uhl, “Tracking objects as points,” in European Conference on Computer Vision . Springer, 2020, pp. 474– 490
2020
-
[50]
Quasi- dense similarity learning for multiple object tracking,
J. Pang, L. Qiu, X. Li, H. Chen, Q. Li, T. Darrell, and F. Yu, “Quasi- dense similarity learning for multiple object tracking,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 164–173
2021
-
[51]
Memot: Multi-object tracking with memory,
J. Cai, M. Xu, W. Li, Y . Xiong, W. Xia, Z. Tu, and S. Soatto, “Memot: Multi-object tracking with memory,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 8090–8100
2022
-
[52]
Motfr: Multiple object tracking based on feature recoding,
J. Kong, E. Mo, M. Jiang, and T. Liu, “Motfr: Multiple object tracking based on feature recoding,” IEEE Transactions on Circuits and Systems for Video Technology, vol. 32, no. 11, pp. 7746–7757, 2022
2022
-
[53]
Modelling ambiguous assignments for multi- person tracking in crowds,
D. Stadler and J. Beyerer, “Modelling ambiguous assignments for multi- person tracking in crowds,” in 2022 IEEE/CVF Winter Conference on Applications of Computer Vision Workshops (WACVW) , 2022, pp. 133– 142
2022
-
[54]
Motrv2: Bootstrapping end-to-end multi-object tracking by pretrained object detectors,
Y . Zhang, T. Wang, and X. Zhang, “Motrv2: Bootstrapping end-to-end multi-object tracking by pretrained object detectors,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2023, pp. 22 056–22 065
2023
-
[55]
Looking beyond two frames: End-to-end multi-object tracking using spatial and temporal transformers,
T. Zhu, M. Hiller, M. Ehsanpour, R. Ma, T. Drummond, I. Reid, and H. Rezatofighi, “Looking beyond two frames: End-to-end multi-object tracking using spatial and temporal transformers,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 45, no. 11, pp. 12 783...
2023
-
[56]
Multiple object tracking with correlation learning,
Q. Wang, Y . Zheng, P. Pan, and Y . Xu, “Multiple object tracking with correlation learning,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 3876–3886
2021
-
[57]
Transmot: Spatial- temporal graph transformer for multiple object tracking,
P. Chu, J. Wang, Q. You, H. Ling, and Z. Liu, “Transmot: Spatial- temporal graph transformer for multiple object tracking,” in Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, 2023, pp. 4870–4880
2023
-
[58]
Relationtrack: Relation-aware mul- tiple object tracking with decoupled representation,
E. Yu, Z. Li, S. Han, and H. Wang, “Relationtrack: Relation-aware mul- tiple object tracking with decoupled representation,” IEEE Transactions on Multimedia , vol. 25, pp. 2686–2697, 2023
2023
-
[59]
Rethinking the competition between detection and reid in multiobject tracking,
C. Liang, Z. Zhang, X. Zhou, B. Li, S. Zhu, and W. Hu, “Rethinking the competition between detection and reid in multiobject tracking,” IEEE Transactions on Image Processing , vol. 31, pp. 3182–3196, 2022
2022
-
[60]
Simple cues lead to a strong multi-object tracker,
J. Seidenschwarz, G. Bras ´o, V . C. Serrano, I. Elezi, and L. Leal-Taix ´e, “Simple cues lead to a strong multi-object tracker,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2023, pp. 13 813–13 823
2023
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.