Pith. sign in

REVIEW 3 major objections 5 minor 53 references

Multi-tracklet Tracking for Generic Targets with Adaptive Detection Clustering

T0 review · 3 major / 5 minor · reviewed 2026-08-05 · deepseek-v4-flash

Pith's one-line read Grouping noisy detections into short tracklets makes generic-object tracking more accurate and faster, the paper argues.

desk verdict A novel adaptive tracklet-generation scheme that shows real promise on GMOT-40, but the headline claim of improving MHT is not directly supported by the experiments as reported. read the letter →

arxiv 2508.05172 v1 pith:PU3TJWM4 submitted 2025-08-07 cs.CV

classification cs.CV
keywords tracklet-basedtrackinggenericmultipleobjectmulti-hypothesisdensity-basedclusteringDBSCANdataassociationGMOT-40low-confidencedetections
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

Generic-object tracking usually falls apart when the detector must handle categories it has never seen: detections are low-confidence, false-target-rich, and weak in appearance and motion cues. The paper's claim is that grouping these noisy detections into short tracklets before making any association decision restores enough signal that a multi-hypothesis tracker can produce competitive trajectories. It builds MTT, which cuts the video where detection counts jump, clusters detections into tracklets by density (DBSCAN at 80 pixels), then runs tracklet-scored MHT-style association. On GMOT-40, MTT reports first or second ranks across the one-shot, zero-shot, and normal protocols, including 3.8% MOTA and 2.14% IDF1 over the runner-up in one-shot detection. A sympathetic reading is that tracklet representation, not a better detector, is the mechanism that buys identity stability in low-confidence regimes.

What carries the argument

The load-bearing object is the tracklet, a short, identity-labeled set of detections, produced by three steps: sequence partitioning by the gradient of the detection-count curve; density-based clustering of detection centers with DBSCAN at epsilon=80 px and min points=2; and an integer linear program (Eq. 13) with a transitive-clique constraint that assigns detections within each cluster to tracklets. These tracklets enter an MHT-style tree as leaf nodes; branch scores combine motion log-likelihood (Eq. 17), appearance log-ratio (Eq. 18), and average confidence (Eq. 19), and global selection is a maximum-weight independent set. The clique constraint is the step that keeps a cluster's nodes c

What would settle it

On a densely packed small-target sequence such as 'insect-3', look for pairs of ground-truth targets whose detection centers fall within 80 pixels in the same subsequence. If any such pair is assigned to one DBSCAN cluster and the resulting tracklet contains detections of both identities, the generation stage's separation premise fails and the method's advantage should shrink on that sequence.

Watch

Extended reading notes

Core claim

The central discovery claimed is that tracklets generated by adaptive detection clustering outperform raw detections as the basic unit of multi-hypothesis tracking for generic targets. The method reads detection confidence and count changes to find cut points, clusters detections in each subsequence via DBSCAN, and solves a small integer program (with a transitive-clique constraint) to form tracklets. It then treats each tracklet as a leaf in MHT trees, scores branches with a weighted sum of motion log-likelihood, appearance log-likelihood, and average confidence, and resolves conflicts by maximum-weight independent set selection. The authors report this yields the best or second-best MOTA a

Load-bearing premise

A single fixed 80-pixel radius with min points of 2 must separate distinct targets into different clusters across all ten GMOT-40 categories, despite object scales that range from insects to vehicles; otherwise the ILP is asked to split mixed clusters, and its clique constraint tends to merge them.

Editorial extensions

If this is right

  • Variable-length sequence partitioning keeps tracklet generation tractable: compared with fixed windows, it maintains a 100% pass rate across all window sizes while reducing generation time and the number of tracklets and identity switches.
  • Tracklet-level features are more separable than single-detection features: t-SNE visualization and similarity histograms on the 'airplane-0' sequence show more distinct feature boundaries, which supports the lower ID-switch counts in the main experiments.
  • Ablation results attribute the gain to all three mechanisms: removing adaptive clustering costs about 3.1 MOTA, and removing the tracklet module and appearance module causes further drops in MOTA and increases FP+FN.
  • Under ground-truth detections, MTT reaches MOTA 95.60 and IDF1 88.29, close to but below a reproduced plain MHT (96.37 and 90.31), indicating that tracklet segmentation slightly reduces information completeness when detections are perfect while helping most when detections are noisy.
  • On GMOT-40, MTT holds across protocols: one-shot MOTA is the best at 24.20, zero-shot MOTA is the best at 28.11, and normal-detection IDF1 is the best at 48.36 with MOTA close to the leader.

Reading between the lines

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

  • Editorial inference: the density-based tracklet generator could likely be attached to association trackers other than MHT, since any tracker that links detections should benefit from the variance reduction of tracklet-level features; the paper's reported gains may not be tied to the specific MHT machinery.
  • Editorial inference: because the 80-pixel radius is fixed globally, an adaptive version that scales epsilon with median box size or local target density could push the method further on insect-scale and vehicle-scale sequences—an experiment the paper does not run but its own limitation discussion implies.
  • Editorial inference: the reported ceiling (MOTA below 40, IDF1 below 50 on one-shot GMOT) suggests the next performance jump will come from using tracklet consistency to refine low-confidence detections, not from association alone, since the authors themselves state that detector robustness is the remaining bottleneck.
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

3 major / 5 minor

Summary. The paper proposes Multi-Tracklet Tracking (MTT), a tracklet-based variant of multi-hypothesis tracking for the GMOT task. Tracklets are generated by first partitioning the video into variable-length subsequences based on a detection-count gradient, then clustering detections within each subsequence using DBSCAN with a fixed pixel radius, and finally solving an ILP with a clique/transitivity constraint to form tracklets. These tracklets replace individual detections as leaf nodes in the MHT tree, with motion, appearance, and confidence scoring, followed by global maximum-weight-independent-set association. The method is evaluated on GMOT-40 under normal, one-shot, and zero-shot detection protocols, with additional ablation and ground-truth-detection comparisons. The paper reports competitive results, particularly on the one-shot protocol, and honestly acknowledges that MTT is below the reproduced MHT baseline under ground-truth detections.

Significance. If the central claim is validated, the contribution is practically useful: a tracklet pre-processing and association strategy that makes MHT more efficient and robust when detections are low-confidence and categories are unseen. The paper has several strengths: it evaluates on all 40 GMOT-40 sequences under three protocols, provides an ablation study, and explicitly discusses limitations. However, the load-bearing claim that MTT improves the multi-hypothesis tracker in low-confidence scenarios is not directly tested, because the only MTT-versus-MHT comparison is under ground-truth detections, where MTT is worse, and MHT is absent from the one-shot and zero-shot tables. The efficiency analysis also relies on a self-selected subset of sequences. These issues are fixable and central, so major revision is warranted.

major comments (3)
  1. [Section 5.4, Tables III and V] The paper's central claim, stated in the introduction and repeated in Section 5.4, is that MTT improves multi-hypothesis tracking in low-confidence detection scenarios. This is not demonstrated. Table III is the only direct MTT-vs-MHT comparison, but it uses ground-truth detections, where MTT has lower MOTA (95.60 vs 96.37) and lower IDF1 (88.29 vs 90.31). Table V, which contains the one-shot GlobalTrack and zero-shot GLIP protocols that constitute the low-confidence setting, omits MHT entirely. The observed gains over the other baselines could therefore come from the DBSCAN prefiltering or from the appearance/confidence scoring rather than from an improved tracklet-based MHT association. Please add MHT as a baseline in the one-shot and zero-shot protocols and, ideally, an ablation that adds MTT components one by one on top of the reproduced MHT to localize the source of improvement.
  2. [Section 5.2.1, Table II] The time-cost comparison is not sufficient to support the efficiency claims. The starred columns are computed on only 12 of the 40 sequences, and the text states that time spent on failed sequences is not included. For the fixed-length window method, pass rates drop to as low as 30% for window size 10, so excluding failures selects the easy subset for the method being compared. The claim that the variable-length window method has a time advantage over the non-tracklet method is therefore not established on the full benchmark. Please report runtime for all 40 sequences or give a per-sequence breakdown that accounts for failed runs, and use a uniform protocol for all methods.
  3. [Section 4.2.2 and Table I] The density-based tracklet generator uses a single fixed (epsilon, delta) = (80, 2) in pixels across all ten GMOT-40 categories, whose object scales range from insects to vehicles. A fixed Euclidean radius can merge nearby targets in dense insect scenes and split large vehicles in sparse scenes. Because errors in tracklet generation propagate into the ILP of Eq. (13) and then into the track trees, this parameter choice is load-bearing. No sensitivity analysis of epsilon/delta, or of the confidence threshold, is reported. Please add a robustness study over these parameters or a category-wise analysis to justify the fixed setting.
minor comments (5)
  1. [Section 5.4] The text says 'significant improvements of 3.8% in MOTA and 2.14% in IDF1.' Since no error bars or significance tests are provided, 'significant' should be replaced by 'substantial' or supported with per-sequence variance and a statistical test.
  2. [Section 4.3] The text 'Unlike the traditional HMT framework' should be 'MHT framework.' There are also typos elsewhere, e.g., 'hight confidence,' 'detetion,' 'sloving,' and 'subsequnences,' which should be corrected.
  3. [Section 4.2.2] Eq. (9) defines the epsilon-neighborhood for detection center points, but Eq. (10) writes the distance matrix for detections z_i. Please clarify exactly what input dist() receives and whether bounding-box size is used anywhere in the clustering.
  4. [Section 4.3.2, Eq. (17)] The term V_space in the motion score is not defined. Please specify the dimension and units of the observation space so that the log-likelihood constant is interpretable.
  5. [Table IV] The components A, B, and C should be defined in the table caption or immediately before the table. Currently the definitions appear only in the text, and each ablation row should state exactly which modules are removed.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the tracklet-generation and association steps are self-contained optimizations, and the headline result is benchmarked on an external dataset.

full rationale

I walked the paper's derivation chain. The claimed contribution is a tracklet-enhanced multi-hypothesis tracker: adaptive sequence partitioning (Eqs. 6-8), density-based tracklet generation via DBSCAN and the ILP tracklet-extraction problem (Eqs. 9-13), tracklet tree creation/updating and scoring (Eqs. 14-20), and global tracklet association via MWIS (Eq. 21). Each of these is presented as an optimization or scoring construction whose inputs are detections, features, and threshold parameters; none defines its output in terms of the headline performance metric. The central empirical claim is evaluated on the external GMOT-40 benchmark with fixed one-shot, zero-shot, and normal detection protocols (Table V), so the reported MOTA/IDF1 improvements do not reduce by construction to a fitted quantity. The self-citations to the authors' prior tracklet/MHT works ([20], [21]) appear only as background descriptions of existing tracklet-based strategies; the paper does not rely on a self-cited uniqueness theorem, nor does it smuggle in an ansatz solely by citation. The absence of an MHT row in the one-shot/zero-shot tables (Table V) is a missing control for the claim of improving MHT under low-confidence detections, and the undisclosed choice of hyperparameters could be an overfitting concern, but neither is a circularity. No circular step can be exhibited from the paper's equations or citations.

Assumptions & free parameters 16 free parameters · 7 assumptions · 0 invented entities

The central performance claim rests on a large number of hand-set hyperparameters, several domain assumptions about detector behavior and feature quality, and an ad hoc clique constraint in the tracklet ILP. The benchmark evaluation is external, but the method's transferability depends on fixing these parameters per scenario.

free parameters (16)
  • DBSCAN epsilon = 80 pixels
    Fixed radius for density clustering across all categories; no sensitivity analysis provided.
  • DBSCAN min samples (delta) = 2
    Fixed minimum points to define core points; hand-set.
  • Gradient threshold d = 5
    Controls when the detection count curve is cut; hand-set.
  • Median filter window w_median = 5
    Smooths detection count curve; hand-set.
  • Confidence threshold theta_s = 0.1
    Lower bound for confidence scoring in Eq. 19; hand-set.
  • NMS threshold = 0.5
    Standard NMS overlap threshold; not justified for generic targets.
  • Max subwindow length l_max = 5
    Upper bound on subsequence length; hand-set.
  • Max detection count in subsequence u = 70
    Upper bound on problem size; hand-set.
  • Motion distance threshold theta_mot = 15
    Gate for tracklet-tree expansion; hand-set.
  • Appearance distance threshold theta_app = 0.85
    Cosine similarity gate; hand-set.
  • Pruning depth k = 2
    N-scan pruning depth; hand-set.
  • Null appearance likelihood theta_null = 0.3
    Baseline for appearance log-likelihood ratio; hand-set.
  • Max patience window = 10
    Frames before a target is declared lost; hand-set.
  • Max leaves per track tree = 8
    Limits hypothesis tree size; hand-set.
  • Scoring weights (w_mot, w_app, w_conf) = (0.1, 0.9, 3.0)
    Weights in Eq. 20; confidence dominates; hand-set.
  • Sliding window step S = 1
    Step size for the variable-length window; hand-set.
assumptions (7)
  • domain assumption Detection confidence scores are informative of true target presence.
    Used in confidence scoring (Eq. 19) and tracklet feature weighting (Eq. 15); the paper's own Figure 1 shows detectors are miscalibrated for unseen categories.
  • domain assumption Spatial proximity in a short subsequence implies same identity.
    Underpins density-based clustering (Eq. 9) and the motion gate w3 in Eq. 12; may fail for dense or high-speed targets.
  • domain assumption ImageNet-pretrained ResNet-18 features are discriminative for generic unseen categories.
    Appearance scoring (Eq. 16-18) and tracklet representation (Eq. 15) rely on these features; no category-specific adaptation is used.
  • domain assumption The detection count curve and its gradient reflect scene events such as occlusion and target entry/exit.
    Section 4.2.1 uses this to choose sequence cut points; unreliable detectors may corrupt the curve.
  • ad hoc to paper All detections in a generated tracklet must be pairwise linked (clique constraint).
    The ILP constraint e_ij + e_jk <= e_ik + 1 in Eq. 13 forces transitive closure, which may merge chains of detections across different targets.
  • standard math MHT and MWIS formulations adequately approximate the NP-hard data association problem.
    Section 3.3 and 4.3.3 rely on standard MHT heuristics and MWIS solvers without formal guarantees.
  • domain assumption The null hypothesis models for motion and appearance scoring are appropriate.
    Eq. 17-18 assume Gaussian motion and a fixed appearance null likelihood theta_null; these choices are not empirically validated.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Multi-tracklet Tracking for Generic Targets with Adaptive Detection Clustering." pith.science (2026). https://pith.science/paper/PU3TJWM4

@misc{pith2026250805172,
  author       = {Pith},
  title        = {Pith review of: Multi-tracklet Tracking for Generic Targets with Adaptive Detection Clustering},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/PU3TJWM4}},
  note         = {Machine review of arXiv:2508.05172}
}
read the original abstract

Tracking specific targets, such as pedestrians and vehicles, has been the focus of recent vision-based multitarget tracking studies. However, in some real-world scenarios, unseen categories often challenge existing methods due to low-confidence detections, weak motion and appearance constraints, and long-term occlusions. To address these issues, this article proposes a tracklet-enhanced tracker called Multi-Tracklet Tracking (MTT) that integrates flexible tracklet generation into a multi-tracklet association framework. This framework first adaptively clusters the detection results according to their short-term spatio-temporal correlation into robust tracklets and then estimates the best tracklet partitions using multiple clues, such as location and appearance over time to mitigate error propagation in long-term association. Finally, extensive experiments on the benchmark for generic multiple object tracking demonstrate the competitiveness of the proposed framework.

Figures

Figures reproduced from arXiv: 2508.05172 by the authors.

Figure 1
Figure 1. Detection failures occur in unseen categories. The results indicate that detectors are more confident in identifying targets with prior knowledge. For unseen targets, detectors may miss targets and produce false or low-confidence proposals [PITH_FULL_IMAGE:figures/full_fig_p013_1.png] view at source ↗
Figure 2
Figure 2. Illustration of a layered graph. t =1 t=2 t=3 t=4 T=1 t=1 t=2 t=3 T=2 T=3 T=4 …… …… …… …… …… …… t=n …… [PITH_FULL_IMAGE:figures/full_fig_p013_2.png] view at source ↗
Figure 3
Figure 3. Illustration of differences between MHT and its tracklet-based version in tree creation. 1. find cut point 2. tracklet generation subsequnences 3. tracklet association [PITH_FULL_IMAGE:figures/full_fig_p013_3.png] view at source ↗
Figures from the paper (7 more)
Figure 4
Figure 4. Figure 4: Illustration of tracklet-based tracking. First Author et al.: Preprint submitted to Elsevier Page 13 of 12 [PITH_FULL_IMAGE:figures/full_fig_p013_4.png]
Figure 5
Figure 5. Figure 5: Flow diagram of the proposed multi-tracklet tracking [PITH_FULL_IMAGE:figures/full_fig_p014_5.png]
Figure 6
Figure 6. Figure 6: Flexible sequence partitioning based on detector reports. Density-based clustering Multi-frame detections subsequence [PITH_FULL_IMAGE:figures/full_fig_p014_6.png]
Figure 9
Figure 9. Figure 9: Illustration of weighted undirected graph for global tracklet association. First Author et al.: Preprint submitted to Elsevier Page 14 of 12 [PITH_FULL_IMAGE:figures/full_fig_p014_9.png]
Figure 10
Figure 10. Figure 10: Illustration of the relationship between tracking runtime and window size [PITH_FULL_IMAGE:figures/full_fig_p015_10.png]
Figure 12
Figure 12. Figure 12: Illustration of histograms under discrete feature and tracklet feature. First Author et al.: Preprint submitted to Elsevier Page 15 of 12 [PITH_FULL_IMAGE:figures/full_fig_p015_12.png]
Figure 11
Figure 11. Figure 11: Illustration of tracklet feature embedding [PITH_FULL_IMAGE:figures/full_fig_p015_11.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

53 extracted references · 40 canonical work pages

  1. [1]

    Y.Wu,H.Sheng,Y.Zhang,S.Wang,Z.Xiong,W.Ke,Hybridmotion model for multiple object tracking in mobile devices, IEEE Internet of Things Journal (2022)

  2. [2]

    S.Wang,H.Sheng,Y.Zhang,D.Yang,J.Shen,R.Chen,Blockchain- empowered distributed multi-camera multi-target tracking in edge computing, IEEE Transactions on Industrial Informatics (2023)

  3. [3]

    S. Wang, H. Sheng, D. Yang, Y. Zhang, Y. Wu, S. Wang, Extend- able multiple nodes recurrent tracking framework with rtu++, IEEE Transactions on Image Processing 31 (2022) 5257–5271

  4. [4]

    Zhang, H

    Y. Zhang, H. Sheng, Y. Wu, S. Wang, W. Ke, Z. Xiong, Multiplex labeling graph for near-online tracking in crowded scenes, IEEE Internet of Things Journal 7 (9) (2020) 7892–7902

  5. [5]

    Z. Wu, W. Ke, C. Wang, W. Zhang, Z. Xiong, Online 3d recon- structionofzebrafishbehavioraltrajectorieswithinaholisticperspec- tive, in: 2022 IEEE International Conference on Bioinformatics and Biomedicine (BIBM), IEEE, 2022, pp. 854–859

  6. [6]

    Z. Wu, C. Wang, W. Zhang, G. Sun, W. Ke, Z. Xiong, Online 3d behavioral tracking of aquatic model organism with a dual-camera system, Advanced Engineering Informatics 61 (2024) 102481

  7. [7]

    L. Hu, J. Zhang, W. Lv, Y. Gong, J. Wang, J. Zhang, D. Zeng, Dctracker: Rethinking mot in soccer events under dual views via cascade association, Knowledge-Based Systems (2024) 112528

  8. [8]

    W. Kim, Y. B. Cho, S. Lee, Thermal sensor-based multiple object tracking for intelligent livestock breeding, IEEE Access 5 (2017) 27453–27463

Show all 53 references
  1. [9]

    C.Zhang,W.Xie,Y.Li,Z.Liu,Multi-sourcetstargetrecognitionvia an intuitionistic fuzzy method, Remote Sensing 15 (24) (2023) 5773

  2. [10]

    Zhang, L.-Q

    C.-Y. Zhang, L.-Q. Li, S. Huang, Multiple target data-association algorithm based on takagi–sugeno intuitionistic fuzzy model, Neu- rocomputing 536 (2023) 114–124. First Author et al.:Preprint submitted to ElsevierPage 10 of 12 Short Title of the Article Method MOTA↑IDF1↑MT↑PT...

  3. [11]

    Luo, T.-K

    W. Luo, T.-K. Kim, Generic object crowd tracking by multi-task learning., in: BMVC, Vol. 1, 2013, p. 3

  4. [12]

    1290–1297

    W.Luo,T.-K.Kim,B.Stenger,X.Zhao,R.Cipolla,Bi-labelpropaga- tion for generic multiple object tracking, in: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2014, pp. 1290–1297

  5. [13]

    H. Bai, W. Cheng, P. Chu, J. Liu, K. Zhang, H. Ling, Gmot-40: A benchmarkforgenericmultipleobjecttracking,in:Proceedingsofthe IEEE/CVFConferenceonComputerVisionandPatternRecognition, 2021, pp. 6719–6728

  6. [14]

    L. H. Li, P. Zhang, H. Zhang, J. Yang, C. Li, Y. Zhong, L. Wang, L.Yuan,L.Zhang,J.-N.Hwang,etal.,Groundedlanguage-imagepre- training, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 10965–10975

  7. [15]

    S. Liu, Z. Zeng, T. Ren, F. Li, H. Zhang, J. Yang, C. Li, J. Yang, H. Su, J. Zhu, et al., Grounding dino: Marrying dino with grounded pre-training for open-set object detection, arXiv preprint arXiv:2303.05499 (2023)

  8. [16]

    Q. Liu, Y. Li, Y. Jiang, Y. Fu, Siamese-detr for generic multi-object tracking, IEEE Transactions on Image Processing (2024)

  9. [17]

    S. H. Rezatofighi, A. Milan, Z. Zhang, Q. Shi, A. Dick, I. Reid, Joint probabilistic data association revisited, in: Proceedings of the IEEE international conference on computer vision, 2015, pp. 3047–3055

  10. [18]

    S. Oh, S. Russell, S. Sastry, Markov chain monte carlo data asso- ciation for multi-target tracking, IEEE Transactions on Automatic Control 54 (3) (2009) 481–497

  11. [19]

    1234–1241

    B.Wang,G.Wang,K.LukChan,L.Wang,Trackletassociationwith online target-specific metric learning, in: Proceedings of the IEEE conference on computer vision and pattern recognition, 2014, pp. 1234–1241

  12. [20]

    H.Sheng,J.Chen,Y.Zhang,W.Ke,Z.Xiong,J.Yu,Iterativemultiple hypothesistrackingwithtracklet-levelassociation,IEEETransactions on Circuits and Systems for Video Technology 29 (12) (2018) 3660– 3672

  13. [21]

    Y.Zhang,H.Sheng,Y.Wu,S.Wang,W.Lyu,W.Ke,Z.Xiong,Long- term tracking with deep tracklet association, IEEE Transactions on Image Processing 29 (2020) 6694–6706

  14. [22]

    S. S. Blackman, Multiple hypothesis tracking for multiple target tracking, IEEE Aerospace and Electronic Systems Magazine 19 (1) (2004) 5–18

  15. [23]

    C. Kim, F. Li, A. Ciptadi, J. M. Rehg, Multiple hypothesis tracking revisited, in: Proceedings of the IEEE international conference on computer vision, 2015, pp. 4696–4704

  16. [24]

    3645–3649

    N.Wojke,A.Bewley,D.Paulus, Simpleonlineandrealtimetracking with a deep association metric, in: 2017 IEEE international confer- ence on image processing (ICIP), IEEE, 2017, pp. 3645–3649

  17. [25]

    Bewley, Z

    A. Bewley, Z. Ge, L. Ott, F. Ramos, B. Upcroft, Simple online and realtime tracking, in: 2016 IEEE international conference on image processing (ICIP), IEEE, 2016, pp. 3464–3468

  18. [26]

    Ciaparrone, F

    G. Ciaparrone, F. L. Sánchez, S. Tabik, L. Troiano, R. Tagliaferri, F. Herrera, Deep learning in video multi-object tracking: A survey, Neurocomputing 381 (2020) 61–88

  19. [27]

    5567–5577

    S.Li,T.Fischer,L.Ke,H.Ding,M.Danelljan,F.Yu,Ovtrack:Open- vocabularymultipleobjecttracking,in:ProceedingsoftheIEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 5567–5577

  20. [28]

    Radford, J

    A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G.Sastry,A.Askell,P.Mishkin,J.Clark,etal.,Learningtransferable visual models from natural language supervision, in: International conference on machine learning, PMLR, 2021, pp. 8748–8763

  21. [29]

    Neubeck, L

    A. Neubeck, L. Van Gool, Efficient non-maximum suppression, in: 18th international conference on pattern recognition (ICPR’06), Vol. 3, IEEE, 2006, pp. 850–855

  22. [30]

    Huang, B

    C. Huang, B. Wu, R. Nevatia, Robust object tracking by hierarchical associationofdetectionresponses,in:ComputerVision–ECCV2008: 10th European Conference on Computer Vision, Marseille, France, October 12-18, 2008, Proceedings, Part II 10, Springer, 2008, pp. 788–801

  23. [31]

    A.RoshanZamir,A.Dehghan,M.Shah,Gmcp-tracker:Globalmulti- object tracking using generalized minimum clique graphs, in: Com- puter Vision–ECCV 2012: 12th European Conference on Computer Vision, Florence, Italy, October 7-13, 2012, Proceedings, Part II 12, Springer, 2012, pp. 343...

  24. [32]

    B.Wang,G.Wang,K.L.Chan,L.Wang,Trackletassociationbyon- linetarget-specificmetriclearningandcoherentdynamicsestimation, IEEEtransactionsonpatternanalysisandmachineintelligence39(3) (2016) 589–602

  25. [33]

    H. Shen, L. Huang, C. Huang, W. Xu, Tracklet association tracker: An end-to-end learning-based association approach for multi-object tracking, arXiv preprint arXiv:1808.01562 (2018)

  26. [34]

    G. Wang, Y. Wang, H. Zhang, R. Gu, J.-N. Hwang, Exploit the connectivity: Multi-object tracking with trackletnet, in: Proceedings of the 27th ACM international conference on multimedia, 2019, pp. 482–490

  27. [35]

    L. Chen, H. Ai, R. Chen, Z. Zhuang, Aggregate tracklet appearance features for multi-object tracking, IEEE Signal Processing Letters 26 (11) (2019) 1613–1617

  28. [36]

    A. B. Poore, S. Gadaleta, Some assignment problems arising from multipletargettracking,Mathematicalandcomputermodelling43(9-

  29. [37]

    Zhang, P

    Y. Zhang, P. Sun, Y. Jiang, D. Yu, F. Weng, Z. Yuan, P. Luo, W. Liu, X. Wang, Bytetrack: Multi-object tracking by associating every detection box, in: European conference on computer vision, Springer, 2022, pp. 1–21

  30. [38]

    D. J. Papageorgiou, M. R. Salpukas, The maximum weight indepen- dent set problem for data association in multiple hypothesis tracking, in: Optimization and Cooperative Control Strategies: Proceedings of the 8th International Conference on Cooperative Control and Opti- mization...

  31. [39]

    K. He, X. Zhang, S. Ren, J. Sun, Deep residual learning for image recognition, in: Proceedings of the IEEE conference on computer vision and pattern recognition, 2016, pp. 770–778

  32. [40]

    J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, L. Fei-Fei, Imagenet: A large-scalehierarchicalimagedatabase,in:2009IEEEconferenceon computer vision and pattern recognition, Ieee, 2009, pp. 248–255

  33. [41]

    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, Advances in neural information processing systems 32 (2019)

  34. [42]

    Bernardin, R

    K. Bernardin, R. Stiefelhagen, Evaluating multiple object tracking performance: the clear mot metrics, EURASIP Journal on Image and Video Processing 2008 (2008) 1–10

  35. [43]

    Ristani, F

    E. Ristani, F. Solera, R. Zou, R. Cucchiara, 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

  36. [44]

    G. J. et. al., ultralytics/yolov5: v6.0 - YOLOv5n ’Nano’ models, Roboflow integration, TensorFlow export, OpenCV DNN support (Oct. 2021).doi:10.5281/zenodo.5563715. URLhttps://doi.org/10.5281/zenodo.5563715

  37. [45]

    10012–10022

    Z.Liu,Y.Lin,Y.Cao,H.Hu,Y.Wei,Z.Zhang,S.Lin,B.Guo,Swin transformer: Hierarchical vision transformer using shifted windows, in: Proceedings of the IEEE/CVF international conference on com- puter vision, 2021, pp. 10012–10022

  38. [46]

    T.-Y. Lin, M. Maire, S. Belongie, J. Hays, P. Perona, D. Ramanan, P. Dollár, C. L. Zitnick, Microsoft coco: Common objects in con- text, in: Computer Vision–ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part V 13, Springer, 2014, ...

  39. [47]

    Van der Maaten, G

    L. Van der Maaten, G. Hinton, Visualizing data using t-sne., Journal of machine learning research 9 (11) (2008)

  40. [48]

    Xiang, A

    Y. Xiang, A. Alahi, S. Savarese, Learning to track: Online multi- object tracking by decision making, in: International Conference on Computer Vision (ICCV), 2015

  41. [49]

    E.Bochinski,V.Eiselein,T.Sikora,High-speedtracking-by-detection without using image information, in: 2017 14th IEEE international conferenceonadvancedvideoandsignalbasedsurveillance(AVSS), IEEE, 2017, pp. 1–6

  42. [50]

    P. Chu, H. Ling, Famnet: Joint learning of feature, affinity and multi-dimensional assignment for online multiple object tracking, in: ProceedingsoftheIEEE/CVFInternationalConferenceonComputer Vision, 2019, pp. 6172–6181

  43. [51]

    N.Aharon,R.Orfaig,B.-Z.Bobrovsky,Bot-sort:Robustassociations multi-pedestrian tracking, arXiv preprint arXiv:2206.14651 (2022). First Author et al.:Preprint submitted to ElsevierPage 12 of 12 Short Title of the Article Misclassification Low confidence Correct classification Lo...

  44. [52]

    tracklet generation subsequnences

  45. [53]

    tracklet association Figure 4:Illustration of tracklet-based tracking. First Author et al.:Preprint submitted to ElsevierPage 13 of 12 Short Title of the Article Object Detection Tracklet Tracking Detector Sequence partitioning Subsequence clustering Hypothesis updating Hypoth...

Pith tools

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