Pith. sign in

REVIEW 3 major objections 7 minor 76 references

SonarT165: A Large-scale Benchmark and STFTrack Framework for Acoustic Object Tracking

T0 review · 3 major / 7 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read This paper proposes the first large-scale benchmark for underwater acoustic object tracking, SonarT165, and a tracker called STFTrack that outperforms existing general and lightweight trackers on it.

desk verdict SonarT165 is a real benchmark contribution, but the STFTrack SOTA claim is undermined by an uncontrolled training-data comparison and a test-set feedback loop that the paper itself acknowledges. read the letter →

arxiv 2504.15609 v1 pith:2LW6C5VF submitted 2025-04-22 cs.CV

classification cs.CV
keywords underwateracousticobjecttrackingsonarimagingbenchmarksingletemplatefusiontrajectorycorrectionKalmanfilterfrequencyenhancement
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

The paper argues that underwater acoustic object tracking has been held back by the lack of a common, large-scale evaluation set, and it supplies one: SonarT165, with 330 sequences in square and fan sonar formats and 205K manually checked annotations. It then evaluates a broad set of existing single-object trackers on this benchmark and finds that their localization precision is high while their overlap-based success is low, which it reads as evidence that acoustic appearance variation is a distinct challenge. To meet that challenge, it introduces STFTrack, built on the LiteTrack pipeline, with a multi-view template fusion module, an optimal trajectory correction module, and frequency-based image and feature enhancement. The paper's central claim is that STFTrack achieves state-of-the-art results on SonarT165 among both general and lightweight trackers, at a small computational cost over its baseline.

What carries the argument

The central mechanism is the acoustic-response-equivalent pixel property: in forward-looking sonar images, a pixel's brightness equals the strength of the acoustic reflection, so the target region can be separated from background by binarization at a threshold derived from the previous frame. This property carries the OTCM, where the normalized pixel brightness response $R_{np} = \text{mean}(\text{extract\_patch}(x_m, B_c))$ (with $x_m$ the binarized search image) is multiplied with an IoU score between Kalman prediction and candidate boxes to reject suboptimal matches, and the IoB score then checks whether the chosen box is just a neighbor of the maximum-response box. The other load-bearing piece is MTFM, which builds a multi-view dynamic template from original and binary images, enhances it with channel and spatial attention, and fuses it with the fixed template using cross-attention layers, giving the tracker a spatio-temporal target representation that adapts as the target's acoustic signature changes.

What would settle it

Take the low-acoustic-reflection sequences from SonarT165 (attribute LAR) and compare full STFTrack against STFTrack with the OTCM brightness term $R_{np}$ removed: if the success rate gap between the two versions essentially vanishes, then the acoustic-response-equivalent pixel prior is not what carries the improvement, and the paper's central mechanism would be disconfirmed.

Watch

Extended reading notes

Core claim

STFTrack's design is built on a property of acoustic imaging: the pixel value in a sonar image is proportional to the acoustic reflection intensity at that point, so targets appear as bright, well-edged regions against a dark background. The multi-view template fusion module (MTFM) exploits this by feeding both the original dynamic template and a binarized version of it through a shared backbone, applying spatial and channel attention, and then fusing the resulting multi-view dynamic template with the fixed template through a cross-attention-style layer. The optimal trajectory correction module (OTCM) uses the same property to repair the standard Kalman-filter trajectory: it scores candidate boxes by their normalized pixel brightness response, combines that with an IoU score against the Kalman prediction, and uses an intersection-over-box2 check against the maximum-response box to suppress suboptimal matches. Added to this are an acoustic image enhancement step that adds back double high-frequency content and a frequency enhancement module that learns separate high- and low-frequency feature branches. On SonarT165, the paper reports STFTrack-B reaching 59.2 SR and 90.8 PR, and STFTrack-S reaching 57.6 SR and 89.9 PR, surpassing the best general tracker and the best lightweight baselines.

Load-bearing premise

The load-bearing premise is that the target is brighter in the sonar image than its surroundings, so a binarization threshold taken from the previous frame picks out the true target region; the paper's own failure cases show this stops holding under low acoustic reflection and background interference.

Editorial extensions

If this is right

  • SonarT165 gives the underwater acoustic tracking community a common testbed of 330 sequences and 205K annotations, so future acoustic trackers can be compared on equal ground instead of on private or tiny datasets.
  • Because general trackers already score near 80 PR but below 60 SR, the benchmark isolates overlap accuracy, getting the full box right rather than just the center, as the open problem in acoustic tracking.
  • STFTrack's efficiency numbers, roughly 283 FPS on an RTX 3090 Ti and 25 FPS on an Orin NX for the S variant, indicate the approach can run on embedded hardware of the kind used on underwater vehicles.
  • The benchmark's attribute analysis points to specific unsolved challenges, including acoustic object crossover, small targets, out-of-view, and low acoustic reflection, that next-generation trackers will need to address.

Reading between the lines

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

  • The paper leaves implicit that SonarT165 being test-only could be addressed by releasing a training split; doing so might reduce the domain gap that currently forces the model to train on RGB and thermal data.
  • The acoustic-response-equivalent pixel prior likely transfers to other reflection-imaging modalities such as medical ultrasound, where brightness likewise encodes reflected intensity; the paper points to this connection but does not demonstrate it.
  • A concrete extension would be to make the OTCM binarization threshold adaptive per frame or learned, since the failure cases show the previous-frame threshold degrades under low acoustic reflection and background interference.
  • If SonarT165 becomes a standard underwater acoustic tracking testbed, evaluating square and fan sequences separately, as this paper does, would be a natural protocol because tracker behavior differs systematically between the two formats.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 7 minor

Summary. The paper introduces SonarT165, a benchmark for underwater acoustic object tracking (UAOT) containing 165 square-format and 165 fan-format sequences with 205K manual annotations, together with attribute annotations and evaluations of a wide range of general and lightweight trackers. The paper also proposes STFTrack, built on LiteTrack, with three components: a multi-view template fusion module (MTFM), an optimal trajectory correction module (OTCM), and a frequency enhancement module (FEM), plus an acoustic image high-frequency enhancement preprocessing step. STFTrack-B and STFTrack-S are reported to achieve state-of-the-art success rate (SR) on SonarT165 among general and lightweight trackers, respectively, in Tables III and IV.

Significance. If the benchmark and the comparisons are reliable, SonarT165 would be a valuable community resource for UAOT: it is substantially larger than the existing RGBS50 sonar test set, includes both square and fan sonar formats, and provides attribute annotations that expose concrete failure modes such as low acoustic reflection and background interference. The proposed tracking pipeline is lightweight, and the reported speed/parameter numbers in Table X suggest practical deployment potential. However, the central SOTA claim is currently not established as stated, because the training data used for STFTrack differs from that used for the baselines and because all ablations and hyperparameter choices are made on the test sequences. The benchmark contribution is therefore conditionally significant; it would become fully significant if the evaluation protocol were made controlled and a validation split were provided.

major comments (3)
  1. [Section V.A, V.B; Tables III, IV, V] The state-of-the-art claim is confounded by training data. STFTrack is trained in two stages on LaSOT, GOT10k, UATD, and LasHeR (Section V.A), with thermal images used to simulate acoustic binary images, while the general and lightweight baselines in Tables III and IV are evaluated directly without any indication that they received UATD, LasHeR, or sonar-like fine-tuning. Table V shows that adding UATD to the LiteTrack baseline already improves SR (fan 55.1 to 55.9, square 54.8 to 54.9), so the reported margins of STFTrack-B over ARTrackV2Seq (59.2 vs 57.4 SR) and STFTrack-S over LiteTrack-B8 (57.6 vs 55.0 SR) could be driven by domain-specific pretraining rather than by MTFM, OTCM, or FEM. To support the SOTA claim, the authors should retrain or fine-tune the strongest baselines on the same acoustic/thermal data, or alternatively present a strictly controlled comparison in which every component is ablated with identical training data and report the marginal gains of the proposed modules over such matched baselines.
  2. [Section V.D, Table IX; Section VI.B] The ablation protocol uses the test set for model selection, creating a test-set feedback loop. All ablations in Tables V through IX are reported on SonarT165-Fan and SonarT165-Square, which are the same sequences used for the final performance claim, and Table IX selects the final enhancement variant (High x2) based on these test scores; note that High x3 is better on the fan split (60.7 vs 60.3 SR) but worse on the square split (57.9 vs 58.1 SR). Section VI.B acknowledges that the benchmark contains only test sequences and no training or validation split. Consequently, the chosen configuration, and hence the reported gains, may be optimistically biased by test-set feedback. The authors should add a validation split (or cross-validation over sequences) and perform module selection and threshold tuning on it, then report test results once for the selected configuration.
  3. [Section IV.C, Eqs. (8), (12)-(14); Figure 14] The OTCM module depends on hand-set thresholds and on an acoustic-brightness assumption that the paper's own failure analysis shows is violated. The binarization threshold in Eq. (8) is fixed at 30, the brightness segmentation threshold in Eq. (13) is the average pixel value of the target in the previous frame, and the IoB decision threshold in Eq. (14) is fixed at 0.6, with no sensitivity analysis for any of these values. The underlying assumption that target regions are reliably brighter than the background is contradicted by the LAR and BI attributes and by the failure cases in Figure 14 (notably sequences 015 fan and 055 fan), where low reflection and background interference cause accuracy degradation or drift. The authors should provide a threshold sensitivity study, a learned or otherwise justified derivation of these thresholds, and an explicit evaluation of OTCM behavior on LAR/BI sequences.
minor comments (7)
  1. [Table I] The row for SonarT165 lists 300 sequences, but the text and the rest of the paper consistently state 330 sequences (165 square plus 165 fan); this inconsistency should be corrected.
  2. [Section V.A] The implementation details state 'Python 2.4.0 and Python 3.10'; this is likely a typo for PyTorch 2.4.0, and the two versions should be clarified.
  3. [Figure 4] The caption lists '(b)' twice; the fourth panel should be labeled '(d)' to match the references in the text.
  4. [Table IV] The first metric column is labeled 'AUC' in the lightweight comparison table but 'SR' elsewhere; the metric names should be made consistent across tables, or the difference should be explicitly defined.
  5. [Section III.B.1] The text refers to 'UOT00 [50] and [51]', which appears to be a typo for 'UOT100 [50] and VMAT [51]'; the citation formatting should be corrected.
  6. [Section V.D.1] The text says 'as shown in Table 7' when referring to the FEM ablation, but the table is numbered VII; the cross-reference should be fixed.
  7. [Figure 3 captions] The attribute labels in the caption use 'BC' and 'TBI' instead of the attribute names 'TBC' and 'BI' defined in Table II; these should be aligned.

Circularity Check

0 steps flagged · score 0.0 of 10

No construction-level circularity found; the SOTA claim is an empirical measurement on a new benchmark, and the flagged data/training issues are validity concerns, not definitional circularity.

full rationale

No construction-level circularity found. STFTrack's components are implemented as stated equations (acoustic image enhancement, FEM in Eqs. 3-6, MTFM in Eqs. 8-11, OTCM in Eqs. 12-14) and are evaluated on a newly collected sonar benchmark; they do not define their outputs in terms of the benchmark metrics or of each other by construction. The state-of-the-art claim is an empirical measurement on SonarT165, not a quantity forced by the benchmark definition or by a fitted parameter renamed as a prediction. Self-citations to RGBS50 [1] and UOSTrack [27] are used as dataset/baseline references and are not invoked as uniqueness theorems or as proof of optimality. The paper itself notes that the benchmark contains only test sequences (Section VI.B), and the comparison is not controlled for training data because STFTrack is trained on UATD and LasHeR while baselines use generic RGB pretraining (Section V.A); these are serious external-validity and fairness concerns, but they do not make any derivation equivalent to its own input. No equation in the paper reduces to its own assumption, and no fitted parameter is presented as an independent prediction.

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

The central claims rest on hand-chosen thresholds, a per-frame brightness heuristic, and domain-transfer assumptions from RGB and thermal data to sonar. No new physical entities are introduced. The benchmark's annotation quality is asserted but not measured.

free parameters (4)
  • Binarization threshold for dynamic template (thres in Eq. 8) = 30
    Hand-chosen threshold for binary(zd, thres=30) in the MTFM; no sensitivity analysis is provided.
  • IoB decision threshold (Eq. 14) = 0.6
    Hand-chosen threshold; if Im is larger than 0.6, the candidate box is treated as suboptimal and the max-response box is output. No sensitivity analysis is provided.
  • Number of high-frequency image enhancements = 2 (High x2)
    Selected from Table IX based on SonarT-Fan and SonarT-Square test results; High x3 is better on fan sequences but worse on square sequences, so High x2 is a compromise.
  • OTCM brightness segmentation threshold (Eq. 13) = dynamic (mean pixel value of target in previous frame)
    The binarization threshold is recomputed each frame from the previous target appearance; this heuristic is not justified and can fail when the previous frame is noisy or the target has low reflection.
assumptions (4)
  • domain assumption Sonar pixel values are proportional to acoustic reflection intensity of the target.
    Used to justify the binarization operations in Equations 8 and 13; stated in Section I and Section IV.B.
  • domain assumption A model trained on grayscale RGB and thermal images from LasHeR transfers to acoustic sonar images.
    Second-stage training uses LasHeR thermal images to simulate acoustic binary images; no quantitative evidence of domain alignment is given.
  • domain assumption Training on LaSOT, GOT10k, and UATD generalizes to the SonarT165 test distribution.
    First-stage training uses these datasets; no validation split from SonarT165 is used to verify transfer.
  • domain assumption Manual annotations in SonarT165 are consistent and correct.
    Section III.A.2 states that annotations are proofread, but no inter-annotator agreement or quality metric is reported.

how reviews work

0 comments
Cite this review

Pith. "Pith review of SonarT165: A Large-scale Benchmark and STFTrack Framework for Acoustic Object Tracking." pith.science (2026). https://pith.science/paper/2LW6C5VF

@misc{pith2026250415609,
  author       = {Pith},
  title        = {Pith review of: SonarT165: A Large-scale Benchmark and STFTrack Framework for Acoustic Object Tracking},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2LW6C5VF}},
  note         = {Machine review of arXiv:2504.15609}
}
read the original abstract

Underwater observation systems typically integrate optical cameras and imaging sonar systems. When underwater visibility is insufficient, only sonar systems can provide stable data, which necessitates exploration of the underwater acoustic object tracking (UAOT) task. Previous studies have explored traditional methods and Siamese networks for UAOT. However, the absence of a unified evaluation benchmark has significantly constrained the value of these methods. To alleviate this limitation, we propose the first large-scale UAOT benchmark, SonarT165, comprising 165 square sequences, 165 fan sequences, and 205K high-quality annotations. Experimental results demonstrate that SonarT165 reveals limitations in current state-of-the-art SOT trackers. To address these limitations, we propose STFTrack, an efficient framework for acoustic object tracking. It includes two novel modules, a multi-view template fusion module (MTFM) and an optimal trajectory correction module (OTCM). The MTFM module integrates multi-view feature of both the original image and the binary image of the dynamic template, and introduces a cross-attention-like layer to fuse the spatio-temporal target representations. The OTCM module introduces the acoustic-response-equivalent pixel property and proposes normalized pixel brightness response scores, thereby suppressing suboptimal matches caused by inaccurate Kalman filter prediction boxes. To further improve the model feature, STFTrack introduces a acoustic image enhancement method and a Frequency Enhancement Module (FEM) into its tracking pipeline. Comprehensive experiments show the proposed STFTrack achieves state-of-the-art performance on the proposed benchmark. The code is available at https://github.com/LiYunfengLYF/SonarT165.

Figures

Figures reproduced from arXiv: 2504.15609 by the authors.

Figure 1
Figure 1. When underwater visibility is sufficient (in figure (a)), vehicle can use [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Main introduction of the proposed SonarT165 benchmark. (a) Data collection platform in the pool. (b) Sequence level proportion of different objects. [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Visualization of different attributes of the proposed SonarT165 benchmark. To show more intuitively the challenges they pose to the tracker, we show [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (9 more)
Figure 4
Figure 4. Figure 4: Visualization of bounding box distribution. (a) represents the distribution of the first frame bounding box in the fan sequences. (b) represents the [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 5
Figure 5. Figure 5: The overall framework of STFTrack. We take SOT pre-trained Litetrack [PITH_FULL_IMAGE:figures/full_fig_p006_5.png]
Figure 7
Figure 7. Figure 7: Presentation of frequency enhancement module. [PITH_FULL_IMAGE:figures/full_fig_p006_7.png]
Figure 8
Figure 8. Figure 8: Presentation of the proposed multi-view template fusion module [PITH_FULL_IMAGE:figures/full_fig_p007_8.png]
Figure 10
Figure 10. Figure 10: The success plots, precision plots and normalized precision plots of the trackers. These trackers are STFTrack-B256, ARTrackV2Seq-B256 [PITH_FULL_IMAGE:figures/full_fig_p010_10.png]
Figure 11
Figure 11. Figure 11: The success rate, precision rate and normalized precision rate of STFTrack-B, STFTrack-S, LiteTrack-B8 [PITH_FULL_IMAGE:figures/full_fig_p010_11.png]
Figure 12
Figure 12. Figure 12: Visualized comparisons of STFTrack-B with LiteTrack [PITH_FULL_IMAGE:figures/full_fig_p012_12.png]
Figure 13
Figure 13. Figure 13: Visualization of heat maps of our STFTrack-B, STFTrack-S, and [PITH_FULL_IMAGE:figures/full_fig_p012_13.png]
Figure 14
Figure 14. Figure 14: Visualizion of failure cases of STFTrack-B with LiteTrack [PITH_FULL_IMAGE:figures/full_fig_p013_14.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

76 extracted references · 57 canonical work pages

  1. [1]

    Rgb-sonar tracking bench- mark and spatial cross-attention transformer tracker,

    Y . Li, B. Wang, J. Sun, X. Wu, and Y . Li, “Rgb-sonar tracking bench- mark and spatial cross-attention transformer tracker,” IEEE Transactions on Circuits and Systems for Video Technology , 2024

  2. [2]

    Automatic sea-surface obstacle detection and tracking in forward-looking sonar image sequences,

    I. Karoui, I. Quidu, and M. Legris, “Automatic sea-surface obstacle detection and tracking in forward-looking sonar image sequences,” IEEE Transactions on Geoscience and Remote Sensing , vol. 53, no. 8, pp. 4661–4669, 2015. 14

  3. [3]

    Activity segmentation and fish tracking from sonar videos by combining artifacts filtering and a kalman approach,

    J. Winkler, S. Badri-Hoeher, and F. Barkouch, “Activity segmentation and fish tracking from sonar videos by combining artifacts filtering and a kalman approach,” IEEE Access, vol. 11, pp. 96 522–96 529, 2023

  4. [4]

    An adaptive particle swarm opti- mization for underwater target tracking in forward looking sonar image sequences,

    X. Wang, G. Wang, and Y . Wu, “An adaptive particle swarm opti- mization for underwater target tracking in forward looking sonar image sequences,” IEEE Access, vol. 6, pp. 46 833–46 843, 2018

  5. [5]

    Underwater target tracking using forward-looking sonar for autonomous underwater vehi- cles,

    T. Zhang, S. Liu, X. He, H. Huang, and K. Hao, “Underwater target tracking using forward-looking sonar for autonomous underwater vehi- cles,” Sensors, vol. 20, no. 1, p. 102, 2019

  6. [6]

    Sonar-based detection and tracking of a diver for underwater human-robot interaction sce- narios,

    K. J. DeMarco, M. E. West, and A. M. Howard, “Sonar-based detection and tracking of a diver for underwater human-robot interaction sce- narios,” in 2013 IEEE International Conference on Systems, Man, and Cybernetics. IEEE, 2013, pp. 2378–2383

  7. [7]

    Feature tracking for target identification in acoustic image sequences,

    J. Gao, Y . Gu, and P. Zhu, “Feature tracking for target identification in acoustic image sequences,” Complexity, vol. 2021, no. 1, p. 8885821, 2021

  8. [8]

    Fcn and siamese network for small target tracking in forward-looking sonar images,

    X. Ye, Y . Sun, and C. Li, “Fcn and siamese network for small target tracking in forward-looking sonar images,” in OCEANS 2018 MTS/IEEE Charleston. IEEE, 2018, pp. 1–6

Show all 76 references
  1. [9]

    A lightweight single-target tracking model for underwater sonar scenarios,

    Y . Li, M. Chen, and D. Zhu, “A lightweight single-target tracking model for underwater sonar scenarios,” in 2024 9th International Conference on Automation, Control and Robotics Engineering (CACRE) . IEEE, 2024, pp. 193–197

  2. [10]

    Convolutional neural network architectures for sonar-based diver detection and tracking,

    I. Kvasi ´c, N. Mi ˇskovi´c, and Z. Vuki ´c, “Convolutional neural network architectures for sonar-based diver detection and tracking,” in OCEANS 2019-Marseille. IEEE, 2019, pp. 1–6

  3. [11]

    Real-time bottom tracking using side scan sonar data through one-dimensional convolutional neural networks,

    J. Yan, J. Meng, and J. Zhao, “Real-time bottom tracking using side scan sonar data through one-dimensional convolutional neural networks,” Remote sensing, vol. 12, no. 1, p. 37, 2019

  4. [12]

    Research on obstacle detection and avoidance of autonomous underwater vehicle based on forward-looking sonar,

    X. Cao, L. Ren, and C. Sun, “Research on obstacle detection and avoidance of autonomous underwater vehicle based on forward-looking sonar,” IEEE Transactions on Neural Networks and Learning Systems , vol. 34, no. 11, pp. 9198–9208, 2022

  5. [13]

    Underwater target tracking method based on forward-looking sonar data,

    W. Zeng, R. Li, H. Zhou, and T. Zhang, “Underwater target tracking method based on forward-looking sonar data,”Journal of Marine Science and Engineering, vol. 13, no. 3, p. 430, 2025

  6. [14]

    Litetrack: Layer pruning with asynchronous feature extraction for lightweight and efficient visual tracking,

    Q. Wei, B. Zeng, J. Liu, L. He, and G. Zeng, “Litetrack: Layer pruning with asynchronous feature extraction for lightweight and efficient visual tracking,” in 2024 IEEE International Conference on Robotics and Automation (ICRA). IEEE, 2024, pp. 4968–4975

  7. [15]

    High performance visual tracking with siamese region proposal network,

    B. Li, J. Yan, W. Wu, Z. Zhu, and X. Hu, “High performance visual tracking with siamese region proposal network,” in Proceedings of the IEEE conference on computer vision and pattern recognition , 2018, pp. 8971–8980

  8. [16]

    Siamrpn++: Evolution of siamese visual tracking with very deep networks,

    B. Li, W. Wu, Q. Wang, F. Zhang, J. Xing, and J. Yan, “Siamrpn++: Evolution of siamese visual tracking with very deep networks,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2019, pp. 4282–4291

  9. [17]

    Siamese box adaptive network for visual tracking,

    Z. Chen, B. Zhong, G. Li, S. Zhang, and R. Ji, “Siamese box adaptive network for visual tracking,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2020, pp. 6668–6677

  10. [18]

    Siamcar: Siamese fully convolutional classification and regression for visual tracking,

    D. Guo, J. Wang, Y . Cui, Z. Wang, and S. Chen, “Siamcar: Siamese fully convolutional classification and regression for visual tracking,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 6269–6277

  11. [19]

    Learning spatio-temporal transformer for visual tracking,

    B. Yan, H. Peng, J. Fu, D. Wang, and H. Lu, “Learning spatio-temporal transformer for visual tracking,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2021, pp. 10 448–10 457

  12. [20]

    Joint feature learning and relation modeling for tracking: A one-stream framework,

    B. Ye, H. Chang, B. Ma, S. Shan, and X. Chen, “Joint feature learning and relation modeling for tracking: A one-stream framework,” in European Conference on Computer Vision. Springer, 2022, pp. 341– 357

  13. [21]

    Odtrack: Online dense temporal token learning for visual tracking,

    Y . Zheng, B. Zhong, Q. Liang, Z. Mo, S. Zhang, and X. Li, “Odtrack: Online dense temporal token learning for visual tracking,” Proceedings of the AAAI Conference on Artificial Intelligence , vol. 38, no. 7, pp. 7588–7596, Mar. 2024

  14. [22]

    Tracking meets lora: Faster training, larger model, stronger performance,

    L. Lin, H. Fan, Z. Zhang, Y . Wang, Y . Xu, and H. Ling, “Tracking meets lora: Faster training, larger model, stronger performance,” in European Conference on Computer Vision . Springer, 2024, pp. 300–318

  15. [23]

    Transforming model prediction for tracking,

    C. Mayer, M. Danelljan, G. Bhat, M. Paul, D. P. Paudel, F. Yu, and L. Van Gool, “Transforming model prediction for tracking,” in Pro- ceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 8731–8740

  16. [24]

    Hiptrack: Visual tracking with historical prompts,

    W. Cai, Q. Liu, and Y . Wang, “Hiptrack: Visual tracking with historical prompts,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2024, pp. 19 258–19 267

  17. [25]

    Modelling of multiple spatial-temporal relations for robust visual object tracking,

    S. Wang, Z. Wang, Q. Sun, G. Cheng, and J. Ning, “Modelling of multiple spatial-temporal relations for robust visual object tracking,” IEEE Transactions on Image Processing , 2024

  18. [26]

    Deep spatial and temporal network for robust visual object tracking,

    Z. Teng, J. Xing, Q. Wang, B. Zhang, and J. Fan, “Deep spatial and temporal network for robust visual object tracking,” IEEE Transactions on Image Processing , vol. 29, pp. 1762–1775, 2019

  19. [27]

    Underwater object tracker: Uostrack for marine organism grasping of underwater vehicles,

    Y . Li, B. Wang, Y . Li, Z. Liu, W. Huo, Y . Li, and J. Cao, “Underwater object tracker: Uostrack for marine organism grasping of underwater vehicles,” Ocean Engineering, vol. 285, p. 115449, 2023

  20. [28]

    Neighbortrack: Single object tracking by bipartite matching with neighbor tracklets and its applications to sports,

    Y .-H. Chen, C.-Y . Wang, C.-Y . Yang, H.-S. Chang, Y .-L. Lin, Y .-Y . Chuang, and H.-Y . M. Liao, “Neighbortrack: Single object tracking by bipartite matching with neighbor tracklets and its applications to sports,” in Proceedings of the IEEE/CVF Conference on Computer Visio...

  21. [29]

    Visual tracking with multiview trajectory prediction,

    M. Wu, H. Ling, N. Bi, S. Gao, Q. Hu, H. Sheng, and J. Yu, “Visual tracking with multiview trajectory prediction,” IEEE Transactions on Image Processing, vol. 29, pp. 8355–8367, 2020

  22. [30]

    Towards sequence-level training for visual tracking

    M. Kim, S. Lee, J. Ok, B. Han, and M. Cho, “Towards sequence-level training for visual tracking.” Springer, 2022, pp. 534–551

  23. [31]

    Aiatrack: Attention in attention for transformer visual tracking,

    S. Gao, C. Zhou, C. Ma, X. Wang, and J. Yuan, “Aiatrack: Attention in attention for transformer visual tracking,” in European Conference on Computer Vision. Springer, 2022, pp. 146–164

  24. [32]

    Seqtrack: Sequence to sequence learning for visual object tracking,

    X. Chen, H. Peng, D. Wang, H. Lu, and H. Hu, “Seqtrack: Sequence to sequence learning for visual object tracking,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2023, pp. 14 572–14 581

  25. [33]

    Lighttrack: Finding lightweight neural networks for object tracking via one-shot architecture search,

    B. Yan, H. Peng, K. Wu, D. Wang, J. Fu, and H. Lu, “Lighttrack: Finding lightweight neural networks for object tracking via one-shot architecture search,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 15 180–15 189

  26. [34]

    Fear: Fast, efficient, accurate and robust visual tracker,

    V . Borsuk, R. Vei, O. Kupyn, T. Martyniuk, I. Krashenyi, and J. Matas, “Fear: Fast, efficient, accurate and robust visual tracker,” in European Conference on Computer Vision . Springer, 2022, pp. 644–663

  27. [35]

    Lightweight full- convolutional siamese tracker,

    Y . Li, B. Wang, X. Wu, Z. Liu, and Y . Li, “Lightweight full- convolutional siamese tracker,” Knowledge-Based Systems, vol. 286, p. 111439, 2024

  28. [36]

    Mixformerv2: Efficient fully transformer tracking,

    Y . Cui, T. Song, G. Wu, and L. Wang, “Mixformerv2: Efficient fully transformer tracking,” arXiv preprint arXiv:2305.15896 , 2023

  29. [37]

    Exploring lightweight hierarchical vision transformers for efficient visual tracking,

    B. Kang, X. Chen, D. Wang, H. Peng, and H. Lu, “Exploring lightweight hierarchical vision transformers for efficient visual tracking,” in Pro- ceedings of the IEEE/CVF international conference on computer vision , 2023, pp. 9612–9621

  30. [38]

    Target-aware tracking with long-term context attention,

    K. He, C. Zhang, S. Xie, Z. Li, and Z. Wang, “Target-aware tracking with long-term context attention,” in Proceedings of the AAAI conference on artificial intelligence , vol. 37, no. 1, 2023, pp. 773–780

  31. [39]

    Learning the model update for siamese trackers,

    L. Zhang, A. Gonzalez-Garcia, J. V . D. Weijer, M. Danelljan, and F. S. Khan, “Learning the model update for siamese trackers,” in Proceedings of the IEEE/CVF international conference on computer vision, 2019, pp. 4010–4019

  32. [40]

    Lightfc-x: Lightweight convolutional tracker for rgb-x tracking,

    Y . Li, B. Wang, and Y . Li, “Lightfc-x: Lightweight convolutional tracker for rgb-x tracking,” arXiv preprint arXiv:2502.18143 , 2025

  33. [41]

    Object tracking in satellite videos by improved correlation filters with motion estimations,

    S. Xuan, S. Li, M. Han, X. Wan, and G.-S. Xia, “Object tracking in satellite videos by improved correlation filters with motion estimations,” IEEE Transactions on Geoscience and Remote Sensing , vol. 58, no. 2, pp. 1074–1086, 2019

  34. [42]

    Object tracking in satellite videos with distractor–occlusion-aware correlation particle filters,

    Y . Li, N. Wang, W. Li, X. Li, and M. Rao, “Object tracking in satellite videos with distractor–occlusion-aware correlation particle filters,” IEEE Transactions on Geoscience and Remote Sensing , vol. 62, pp. 1–12, 2024

  35. [43]

    Object tracking in satellite videos: A spatial-temporal regularized correlation filter tracking method with interacting multiple model,

    Y . Li and C. Bian, “Object tracking in satellite videos: A spatial-temporal regularized correlation filter tracking method with interacting multiple model,” IEEE Geoscience and Remote Sensing Letters , vol. 19, pp. 1–5, 2022

  36. [44]

    Hrsiam: High-resolution siamese network, towards space-borne satellite video tracking,

    J. Shao, B. Du, C. Wu, M. Gong, and T. Liu, “Hrsiam: High-resolution siamese network, towards space-borne satellite video tracking,” IEEE Transactions on Image Processing , vol. 30, pp. 3056–3068, 2021

  37. [45]

    Single object tracking in satellite videos: A correlation filter-based dual-flow tracker,

    Y . Chen, Y . Tang, Z. Yin, T. Han, B. Zou, and H. Feng, “Single object tracking in satellite videos: A correlation filter-based dual-flow tracker,” IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, vol. 15, pp. 6687–6698, 2022

  38. [46]

    Motion- aware correlation filter-based object tracking in satellite videos,

    B. Lin, J. Zheng, C. Xue, L. Fu, Y . Li, and Q. Shen, “Motion- aware correlation filter-based object tracking in satellite videos,” IEEE Transactions on Geoscience and Remote Sensing , vol. 62, pp. 1–13, 2024

  39. [47]

    Adaptive trajectory correction for underwater object tracking,

    X. Luo, D. Yuan, X. Shu, Q. Liu, X. Chang, and Z. He, “Adaptive trajectory correction for underwater object tracking,” IEEE Transactions on Circuits and Systems for Video Technology , 2025. 15

  40. [48]

    Online object tracking: A benchmark,

    Y . Wu, J. Lim, and M.-H. Yang, “Online object tracking: A benchmark,” in Proceedings of the IEEE conference on computer vision and pattern recognition, 2013, pp. 2411–2418

  41. [49]

    A benchmark and simulator for uav tracking,

    M. Mueller, N. Smith, and B. Ghanem, “A benchmark and simulator for uav tracking,” in Computer Vision–ECCV 2016: 14th European Confer- ence, Amsterdam, The Netherlands, October 11–14, 2016, Proceedings, Part I 14. Springer, 2016, pp. 445–461

  42. [50]

    Comprehensive underwater object tracking benchmark dataset and underwater image enhancement with gan,

    K. Panetta, L. Kezebou, V . Oludare, and S. Agaian, “Comprehensive underwater object tracking benchmark dataset and underwater image enhancement with gan,” IEEE Journal of Oceanic Engineering , vol. 47, no. 1, pp. 59–75, 2021

  43. [51]

    Semi-supervised visual tracking of marine animals using autonomous underwater vehicles,

    L. Cai, N. E. McGuire, R. Hanlon, T. A. Mooney, and Y . Girdhar, “Semi-supervised visual tracking of marine animals using autonomous underwater vehicles,” International Journal of Computer Vision , vol. 131, no. 6, pp. 1406–1427, 2023

  44. [52]

    Utb180: A high-quality benchmark for underwater tracking,

    B. Alawode, Y . Guo, M. Ummar, N. Werghi, J. Dias, A. Mian, and S. Javed, “Utb180: A high-quality benchmark for underwater tracking,” in Proceedings of the Asian Conference on Computer Vision , 2022, pp. 3326–3342

  45. [53]

    Encoding color information for visual tracking: Algorithms and benchmark,

    P. Liang, E. Blasch, and H. Ling, “Encoding color information for visual tracking: Algorithms and benchmark,” IEEE Transactions on Image Processing, vol. 24, no. 12, pp. 5630–5644, 2015

  46. [54]

    Improving underwater visual tracking with a large scale dataset and image enhancement,

    B. Alawode, F. A. Dharejo, M. Ummar, Y . Guo, A. Mahmood, N. Werghi, F. S. Khan, and S. Javed, “Improving underwater visual tracking with a large scale dataset and image enhancement,” arXiv preprint arXiv:2308.15816, 2023

  47. [55]

    Learning discrim- inative model prediction for tracking,

    G. Bhat, M. Danelljan, L. V . Gool, and R. Timofte, “Learning discrim- inative model prediction for tracking,” in Proceedings of the IEEE/CVF international conference on computer vision , 2019, pp. 6182–6191

  48. [56]

    Probabilistic regression for visual tracking,

    M. Danelljan, L. V . Gool, and R. Timofte, “Probabilistic regression for visual tracking,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2020, pp. 7183–7192

  49. [57]

    Learning to fuse asymmetric feature maps in siamese trackers,

    W. Han, X. Dong, F. S. Khan, L. Shao, and J. Shen, “Learning to fuse asymmetric feature maps in siamese trackers,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 16 570–16 580

  50. [58]

    Learning target candidate association to keep track of what not to track,

    C. Mayer, M. Danelljan, D. P. Paudel, and L. Van Gool, “Learning target candidate association to keep track of what not to track,” in Proceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 13 444–13 454

  51. [59]

    Transformer meets tracker: Exploiting temporal context for robust visual tracking,

    N. Wang, W. Zhou, J. Wang, and H. Li, “Transformer meets tracker: Exploiting temporal context for robust visual tracking,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 1571–1580

  52. [60]

    Autoregressive visual tracking,

    X. Wei, Y . Bai, Y . Zheng, D. Shi, and Y . Gong, “Autoregressive visual tracking,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2023, pp. 9697–9706

  53. [61]

    Artrackv2: Prompting autore- gressive tracker where to look and how to describe,

    Y . Bai, Z. Zhao, Y . Gong, and X. Wei, “Artrackv2: Prompting autore- gressive tracker where to look and how to describe,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2024, pp. 19 048–19 057

  54. [62]

    Exploring enhanced contextual information for video-level object tracking,

    B. Kang, X. Chen, S. Lai, Y . Liu, Y . Liu, and D. Wang, “Exploring enhanced contextual information for video-level object tracking,” arXiv preprint arXiv:2412.11023, 2024

  55. [63]

    Separable self and mixed attention trans- formers for efficient object tracking,

    G. Y . Gopal and M. A. Amer, “Separable self and mixed attention trans- formers for efficient object tracking,” in Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, 2024, pp. 6708– 6717

  56. [64]

    Centernet: Keypoint triplets for object detection,

    K. Duan, S. Bai, L. Xie, H. Qi, Q. Huang, and Q. Tian, “Centernet: Keypoint triplets for object detection,” in 2019 IEEE/CVF International Conference on Computer Vision (ICCV) , 2019, pp. 6568–6577

  57. [65]

    Cornernet: Detecting objects as paired keypoints,

    H. Law and J. Deng, “Cornernet: Detecting objects as paired keypoints,” in Proceedings of the European conference on computer vision (ECCV) , 2018, pp. 734–750

  58. [66]

    Generalized intersection over union: A metric and a loss for bounding 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 bounding box regression,” in Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition , 2019, pp. 658–666

  59. [67]

    Transformer tracking,

    X. Chen, B. Yan, J. Zhu, D. Wang, X. Yang, and H. Lu, “Transformer tracking,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2021, pp. 8126–8135

  60. [68]

    Decoupled weight decay regularization,

    I. Loshchilov, “Decoupled weight decay regularization,” arXiv preprint arXiv:1711.05101, 2017

  61. [69]

    Lasot: A high-quality benchmark for large-scale single object tracking,

    H. Fan, L. Lin, F. Yang, P. Chu, G. Deng, S. Yu, H. Bai, Y . Xu, C. Liao, and H. Ling, “Lasot: A high-quality benchmark for large-scale single object tracking,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , 2019, pp. 5374–5383

  62. [70]

    Got-10k: A large high-diversity benchmark for generic object tracking in the wild,

    L. Huang, X. Zhao, and K. Huang, “Got-10k: A large high-diversity benchmark for generic object tracking in the wild,” IEEE Transactions on Pattern Analysis and Machine Intelligence , vol. 43, no. 5, pp. 1562– 1577, 2019

  63. [71]

    A dataset with multibeam forward-looking sonar for underwater object detection,

    K. Xie, J. Yang, and K. Qiu, “A dataset with multibeam forward-looking sonar for underwater object detection,” Scientific Data, vol. 9, no. 1, p. 739, 2022

  64. [72]

    Lasher: A large-scale high-diversity benchmark for rgbt tracking,

    C. Li, W. Xue, Y . Jia, Z. Qu, B. Luo, J. Tang, and D. Sun, “Lasher: A large-scale high-diversity benchmark for rgbt tracking,” IEEE Transac- tions on Image Processing , vol. 31, pp. 392–404, 2021

  65. [73]

    Microsoft coco: Common objects in context,

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

  66. [74]

    Track- ingnet: A large-scale dataset and benchmark for object tracking in the wild,

    M. Muller, A. Bibi, S. Giancola, S. Alsubaihi, and B. Ghanem, “Track- ingnet: A large-scale dataset and benchmark for object tracking in the wild,” in Proceedings of the European conference on computer vision (ECCV), 2018, pp. 300–317

  67. [75]

    Sardet- 100k: Towards open-source benchmark and toolkit for large-scale sar object detection,

    Y . Li, X. Li, W. Li, Q. Hou, L. Liu, M.-M. Cheng, and J. Yang, “Sardet- 100k: Towards open-source benchmark and toolkit for large-scale sar object detection,” arXiv preprint arXiv:2403.06534 , 2024

  68. [76]

    Admnet: Adaptive-weighting dual mapping for online tracking with respiratory motion estimation in contrast-enhanced ultra- sound,

    M.-D. Li, H.-T. Hu, S.-M. Ruan, M.-Q. Cheng, L.-D. Chen, Z.-R. Huang, W. Li, P. Lin, H. Yang, M. Kuang, M.-D. Lu, Q.-H. Huang, and W. Wang, “Admnet: Adaptive-weighting dual mapping for online tracking with respiratory motion estimation in contrast-enhanced ultra- sound,” IEEE ...

Pith tools

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