Pith. sign in

REVIEW 3 major objections 7 minor 56 references

Aerial multi-object tracking by detection using deep association networks

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

Pith's one-line read Small drone objects evade standard detectors because their anchors are too large; six denser scales plus Squeeze-and-Excitation lift VisDrone validation AP from 14.45 to 17.19 and make tracking-by-detection competitive.

desk verdict Benchmark-tuning paper whose claimed detection gain is confounded by inconsistent training schedules; the tracking result inherits the problem. read the letter →

arxiv 1909.01547 v1 pith:WJODLMHM submitted 2019-09-04 cs.CV

classification cs.CV
keywords aerialobjectdetectionmulti-objecttrackinganchorscalesSqueeze-and-ExcitationRetinaNetDeepSORTVisDronesmall
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 is trying to establish that aerial multi-object tracking can be made to work by fixing the detector's anchor geometry rather than by inventing a new tracking paradigm. It claims that standard RetinaNet anchors, designed for natural images, leave objects of 8–32 pixels in drone footage without any matching anchor, so those objects are invisible to training; replacing the three per-level scales with six denser scales (0.1, 0.25, 0.5, 1, $2^{1/3}$, 2.2) raises recall, and inserting Squeeze-and-Excitation blocks before the feature pyramid raises validation AP from 15.39 to 17.19. On the tracking side, it claims that a DeepSORT-style association network trained on COCO patches, with detector confidence fused into the association metric, produces tracks on VisDrone MOT that beat existing baselines on small pedestrians and cars even when the detector's test-set AP is not the best. A sympathetic reader would care because the recipe is simple and transferable: better small-object detection, not a bespoke tracker, is the bottleneck for drone video.

What carries the argument

The load-bearing objects are the modified anchor scale set and the Squeeze-and-Excitation blocks in the detector, together with the DeepSORT association metric in the tracker. Anchor scales are the reference boxes a one-stage detector compares against; the paper replaces RetinaNet's three per-level scales with six scales covering a wider and denser size range so that very small objects can be matched during training. SE blocks are channel-wise attention units that learn to reweight feature channels; inserted before the feature pyramid, they give the detector better-localized features. The tracker uses a deep association network, a CNN trained with cosine metric learning to embed object patches so that the same object is close in feature space, and fuses its similarity score with the detector's confidence when matching detections across frames.

What would settle it

Run the paper's detector on the VisDrone validation split in four configurations — original anchors, dense anchors, dense anchors plus SE, and dense anchors with SE removed — and check that AP moves roughly along the reported path (14.45 → 15.39 → 17.19); separately, replace the COCO-trained association network with one trained on VisDrone MOT patches and compare tracking AP and ID switches. If either variation does not reproduce the reported differences, the claimed mechanisms are not the cause.

Watch

Extended reading notes

Core claim

The central discovery is that scale coverage, not network capacity, is what unlocks small-object detection in aerial images. With RetinaNet's default anchors, objects below roughly 32×32 pixels have no assigned anchor and therefore do not contribute to training; switching to the six scales 0.1, 0.25, 0.5, 1, $2^{1/3}$, 2.2 at each pyramid level assigns anchors to those objects and lifts average recall at 500 detections per image from 21.38% to 30.49%. Adding Squeeze-and-Excitation blocks between the ResNet outputs C3–C5 and the feature pyramid then improves localization more than recall, raising validation AP from 15.39 to 17.19 and the IoU=0.50 AP from 33.13 to 37.69. The tracking claim is that these detections feed a DeepSORT association pipeline whose appearance embedding is trained on COCO patches and whose distance is fused with detector confidence; on VisDrone MOT the reported result is an overall AP of 13.88 with strong per-class numbers for pedestrians (18.61) and cars (32.2), which the paper attributes to the detector producing many low-confidence but correct detections that the association network can still match.

Load-bearing premise

The tracking pipeline assumes that a deep association network trained on COCO person patches still produces embeddings that tell apart and correctly re-identify the same small objects seen from a drone's aerial viewpoint; the paper does not ablate this transfer, and since detector confidence is fused into the association metric, a failure of those embeddings would directly lower the reported tracking accuracy.

Editorial extensions

If this is right

  • If the central claim is right, any single-stage detector trained on dense small-object data should adopt scale sets that cover the dataset's smallest objects instead of default natural-image anchors.
  • Tracking quality follows from detection recall at high max detections: producing many low-confidence correct detections is more useful for association than producing few high-confidence ones.
  • The confidence-plus-appearance fusion rule should transfer to other tracking-by-detection systems, making the tracker more stable when the appearance embedding is weak or domain-shifted.
  • The reported gains imply that channel recalibration before the feature pyramid is a cheap way to improve localization in aerial detection, independent of the anchor change.
  • The method's strong per-class results on pedestrians and cars, paired with weaker results on buses and vans, suggest category imbalance in VisDrone, not the architecture, is the next obstacle.

Reading between the lines

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

  • The paper does not ablate the COCO-trained association network; a natural extension is to fine-tune it on VisDrone MOT patches and compare ID-switch rates, which would isolate how much of the tracking gain is due to appearance-embedding transfer.
  • Because the reported AP gain from SE blocks is mostly at higher IoU thresholds, the next testable step is pairing the dense anchors with a stronger regression head, such as iterative refinement, to push localization further.
  • If the COCO pretraining transfers well to aerial vehicles, the same detector-plus-association pipeline could be tried on other dense aerial benchmarks without retraining the appearance model, which would confirm whether the transfer is generic rather than VisDrone-specific.
  • A direct probe of the confidence-fusion rule would be to vary its weight between appearance distance and detector score; if tracking degrades smoothly as the confidence weight goes to zero, the fusion is doing real work.
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 proposes a detection and multi-object tracking framework for aerial imagery using the VisDrone2019 benchmark. The detection module is RetinaNet with modified anchor scales (0.1, 0.25, 0.5, 1, 2^{1/3}, 2.2) and Squeeze-and-Excitation blocks, and the tracking module adapts DeepSORT with a deep association network trained on COCO patches. The authors report validation AP gains from 14.45 to 17.19 (Tables 1-2) and competitive tracking results on VisDrone MOT (Table 4), while acknowledging sub-optimal test-set detection performance (Table 3).

Significance. If the reported gains were established under controlled conditions, the anchor-scale and SE-block modifications would be a simple, potentially transferable recipe for small-object detection in aerial images, and the confidence-fused association metric would be a modest but useful extension of DeepSORT. The paper uses a public benchmark and external COCO pretraining, which provides some grounding. However, the central detection claim is not currently supported: the validation ablation is confounded, the official test-set result contradicts the claimed improvement, and the tracking contribution lacks ablations or standard MOT metrics. The significance is therefore conditional on substantial additional experimentation.

major comments (3)
  1. [§3.5 and §4.3, Tables 1-2] The detection ablation in Tables 1-2 is confounded by the training schedule. Section 3.5 states that the base RetinaNet was trained for 26 epochs at 1618 iterations/epoch with batch size 4 (about 42k optimization steps), the dense-scales model for 25 epochs at 3246 iterations/epoch with batch size 4 (about 81k steps), and the dense-scales+SE model for 27 epochs at 3246 iterations/epoch with batch size 2 (about 88k steps). Section 4.3 then states 'We train the network for 50K iterations with the batch size set to 1,' a third incompatible schedule. Because the number of optimization steps, batch size, and schedule vary together with the architectural modifications, the AP increase from 14.45 to 17.19 cannot be attributed to the proposed anchor scales and SE blocks; a longer schedule or smaller batch size alone can raise AP and AR for small objects. The tracking comparisons in Table 4 inherit this attribution problem.
  2. [Table 3] On the official VisDrone test set, the full model ('Ours') achieves AP=11.19, below the RetinaNet baseline of AP=11.81 listed in the same table. This directly contradicts the abstract's claim that the modifications yield 'significant improvements in performance' and is not adequately explained by the statement in §4.4 that the detector performs 'sub-optimally' on the test set. Since the tracking pipeline consumes these detections, the positive tracking results in Table 4 do not compensate for the failure of the central detection claim on the benchmark's official evaluation split.
  3. [§3.4, §4.3, and Table 4] The deep association network is trained on COCO person patches and then applied to all ten VisDrone categories (cars, trucks, buses, pedestrians, etc.) without any ablation measuring whether the embedding transfers across category and viewpoint. The paper states that the detector confidence is fused with the deep association metric, but it does not specify the fusion rule or its hyperparameters, and no experiment separates the contribution of the appearance embedding from the detector confidence. Without such an ablation, the claimed benefit of training the association network and the robustness claim in §4.4 are not established. Table 4 also compares only against trackers from 2011-2014 and reports no CLEAR MOT metrics such as MOTA or IDF1, making the tracking comparison difficult to assess against current practice.
minor comments (7)
  1. [Abstract and throughout] The manuscript contains numerous typos, including 'A lot a research', 'Inspite', 'RetianNet' in Table 2, and 'variablitiy' in §3.1; these should be corrected.
  2. [§3.2] The anchor scales are written as '20, 21/3, 22/3' and '0.1, 0.25, 0.5, 1, 21/3, 2.2'; if these denote 2^{1/3} and 2^{2/3}, the superscripts should be typeset correctly and the intended values stated unambiguously.
  3. [Table 3] The RetinaNet baseline is labeled 'Retinanet [27]', but reference [27] is Li et al.; the Focal Loss paper should be cited as [31]. The citation numbering should be fixed throughout.
  4. [§4.4 and Table 2] The text claims an AR_max=500 of 31.49% for the dense-scales model, while Table 2 reports 30.49%; one of these is a typographical error.
  5. [§4.1] The dataset description says it 'consists of 6,471 images in the training set and 548 images' and does not complete the description of the validation and test splits.
  6. [§3.1] There is an unresolved placeholder citation: 'the same training parameters as mentioned in [?]'.
  7. [Tables 1-4] No error bars or multiple-run statistics are reported, which is important given the small AP differences discussed in §4.4.

Circularity Check

0 steps flagged · score 0.0 of 10

No derivation-level circularity; the ablation is confounded but the claims do not reduce to their inputs by construction.

full rationale

The paper's detection chain is empirical: it chooses anchor scales from VisDrone object size statistics, adds SE blocks, and reports AP/AR on the same validation split. This is in-domain hyperparameter tuning, not a prediction that reduces to a fitted input; the tables are performance measurements, not derived quantities. The tracking module uses an independently trained Deep Association network on COCO [46,47], so the deep cosine metric is external and not refitted on VisDrone MOT; no self-citation chain or uniqueness theorem is load-bearing. The main methodological weakness is that the ablations in Section 3.5 vary anchor scales, SE blocks, epochs, and batch size simultaneously ('The base RetinaNet model was trained for 26 epochs... batch size of 4... model with improved scales ... 25 epochs... batch size of 4... model having new scales along with the SE blocks was trained for 27 epochs... batch size of 2'), and Section 4.3 gives a third schedule ('We train the network for 50K iterations with the batch size set to 1'). This means the AP gain from 14.45 to 17.19 cannot be cleanly attributed to anchors and SE, and Table 4 inherits the attribution problem; but confounding is a correctness risk, not a circularity. The paper even acknowledges transfer limitations ('Although the trained Detector performs well on validation set, it performs sub-optimally on the test set'), which is consistent with benchmark engineering rather than circular derivation.

Assumptions & free parameters 5 free parameters · 2 assumptions · 0 invented entities

The central claim rests on two domain-transfer assumptions: COCO-trained features work for VisDrone, and the validation split predicts official test performance. The detection improvements also depend on hand-chosen anchor scales and inference thresholds. There are no invented entities.

free parameters (5)
  • anchor scales = 0.1, 0.25, 0.5, 1, 2^(1/3), 2.2
    Chosen by hand to cover small object sizes in VisDrone; central to the claimed detection gain.
  • input image size for training = 1500x1000
    Upsampled input size for training; affects scale and compute.
  • detector confidence threshold = 0.05
    Used for both training decoding and test inference; influences precision-recall tradeoff.
  • NMS threshold = 0.5
    Class-wise NMS threshold, affects final detections.
  • max detections = 500
    Evaluation cap used in metrics; the paper emphasizes gains as maxDets grows.
assumptions (2)
  • domain assumption COCO pretrained weights and COCO-trained association features transfer to VisDrone aerial imagery.
    The detection network is initialized from COCO weights and the association network is trained on COCO patches (Sections 4.3, 3.4).
  • domain assumption The self-created validation split of VisDrone is representative of the official test distribution.
    Architecture choice is made on the validation split (Section 4.1); official test numbers in Table 3 contradict this assumption for AP.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Aerial multi-object tracking by detection using deep association networks." pith.science (2026). https://pith.science/paper/WJODLMHM

@misc{pith2026190901547,
  author       = {Pith},
  title        = {Pith review of: Aerial multi-object tracking by detection using deep association networks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/WJODLMHM}},
  note         = {Machine review of arXiv:1909.01547}
}
read the original abstract

A lot a research is focused on object detection and it has achieved significant advances with deep learning techniques in recent years. Inspite of the existing research, these algorithms are not usually optimal for dealing with sequences or images captured by drone-based platforms, due to various challenges such as view point change, scales, density of object distribution and occlusion. In this paper, we develop a model for detection of objects in drone images using the VisDrone2019 DET dataset. Using the RetinaNet model as our base, we modify the anchor scales to better handle the detection of dense distribution and small size of the objects. We explicitly model the channel interdependencies by using "Squeeze-and-Excitation" (SE) blocks that adaptively recalibrates channel-wise feature responses. This helps to bring significant improvements in performance at a slight additional computational cost. Using this architecture for object detection, we build a custom DeepSORT network for object detection on the VisDrone2019 MOT dataset by training a custom Deep Association network for the algorithm.

Figures

Figures reproduced from arXiv: 1909.01547 by the authors.

Figure 1
Figure 1. Detection Network ages, the traditional CNN-based methods tend to miss such densely distributed small objects. In this paper, we provide a novel multi-object tracking by detection framework particularly for aerial images captured by drones. We detect ten predefined categories of objects (i.e., pedestrian, person, car, van, bus, truck, motor, bicycle, awning-tricycle, and tricycle) in drone images collected for VisDr… view at source ↗
Figure 2
Figure 2. Tracking Network the model is unable to identify such small objects. To ad￾dress this issue,we modify the anchor parameters to cover the range of sizes of objects in the dataset. While we use the same anchor sizes, anchor aspect ratios and strides for the anchors, we use the scales 0.1, 0.25, 0.5, 1, 21/3, 2.2, which cover a larger variance in size as well as are denser due the use of 6 scales instead of the origina… view at source ↗
Figure 3
Figure 3. Qualitative Results Method \AP@IoU 0.50:0.95 0.50 0.75 Yolo v3 13.8 30.43 11.18 RetinaNet 14.45 23.74 15.14 RetinaNet (dense scales) 15.39 33.13 13.07 RetinaNet (dense scales +SE attention) 17.19 37.69 13.97 [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

56 extracted references · 45 canonical work pages

  1. [1]

    Aker and S

    C. Aker and S. Kalkan. Using deep networks for drone de- tection. In 2017 14th IEEE International Conference on Ad- vanced Video and Signal Based Surveillance (AVSS) , pages 1–6. IEEE, 2017

  2. [2]

    Andriyenko and K

    A. Andriyenko and K. Schindler. Multi-target tracking by continuous energy minimization. In CVPR 2011 , pages 1265–1272. IEEE, 2011

  3. [3]

    Bae and K.-J

    S.-H. Bae and K.-J. Yoon. Robust online multi-object track- ing based on tracklet confidence and online discriminative appearance learning. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 1218– 1225, 2014

  4. [4]

    A Solution for Large-scale Multi-object Tracking

    M. Beard, B. T. V o, and B.-N. V o. A solution for large-scale multi-object tracking. arXiv preprint arXiv:1804.06622 , 2018

  5. [5]

    Boudjit and C

    K. Boudjit and C. Larbes. Detection and implementation au- tonomous target tracking with a quadrotor ar. drone. In 2015 12th International Conference on Informatics in Control, Au- tomation and Robotics (ICINCO), volume 2, pages 223–230. IEEE, 2015

  6. [6]

    Cai and N

    Z. Cai and N. Vasconcelos. Cascade R-CNN: high qual- ity object detection and instance segmentation. CoRR, abs/1906.09756, 2019

  7. [7]

    Coluccia, M

    A. Coluccia, M. Ghenescu, T. Piatrik, G. De Cubber, A. Schumann, L. Sommer, J. Klatte, T. Schuchert, J. Bey- erer, M. Farhadi, et al. Drone-vs-bird detection challenge at ieee avss2017. In 2017 14th IEEE International Conference on Advanced Video and Signal Based Surveillance (AVSS) , pages 1–6. IEEE, 2017

  8. [8]

    J. Dai, Y . Li, K. He, and J. Sun. R-fcn: Object detection via region-based fully convolutional networks. In Advances in neural information processing systems , pages 379–387, 2016

Show all 56 references
  1. [9]

    Dalal and B

    N. Dalal and B. Triggs. Histograms of oriented gradients for human detection. 2005

  2. [10]

    J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei- Fei. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009

  3. [11]

    Dicle, O

    C. Dicle, O. I. Camps, and M. Sznaier. The way they move: Tracking multiple targets with similar appearance. In Pro- ceedings of the IEEE international conference on computer vision, pages 2304–2311, 2013

  4. [12]

    K. Fang, Y . Xiang, X. Li, and S. Savarese. Recurrent autore- gressive networks for online multi-object tracking. In 2018 IEEE Winter Conference on Applications of Computer Vision (WACV), pages 466–475. IEEE, 2018

  5. [13]

    P. F. Felzenszwalb, R. B. Girshick, D. McAllester, and D. Ra- manan. Object detection with discriminatively trained part- based models. IEEE transactions on pattern analysis and machine intelligence, 32(9):1627–1645, 2009

  6. [14]

    C.-Y . Fu, W. Liu, A. Ranga, A. Tyagi, and A. C. Berg. Dssd: Deconvolutional single shot detector. arXiv preprint arXiv:1701.06659, 2017

  7. [15]

    Girshick

    R. Girshick. Fast r-cnn. In Proceedings of the IEEE inter- national conference on computer vision , pages 1440–1448, 2015

  8. [16]

    Girshick, J

    R. Girshick, J. Donahue, T. Darrell, and J. Malik. Rich fea- ture hierarchies for accurate object detection and semantic segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 580–587, 2014

  9. [17]

    K. He, X. Zhang, S. Ren, and J. Sun. Deep residual learn- ing for image recognition. In Proceedings of the IEEE con- ference on computer vision and pattern recognition , pages 770–778, 2016

  10. [18]

    Henschel, L

    R. Henschel, L. Leal-Taixe, D. Cremers, and B. Rosenhahn. Fusion of head and full-body detectors for multi-object track- ing. In Proceedings of the IEEE Conference on Computer Vi- sion and Pattern Recognition Workshops, pages 1428–1437, 2018

  11. [19]

    Hsieh, Y .-L

    M.-R. Hsieh, Y .-L. Lin, and W. H. Hsu. Drone-based ob- ject counting by spatially regularized regional proposal net- work. In Proceedings of the IEEE International Conference on Computer Vision, pages 4145–4153, 2017

  12. [20]

    J. Hu, L. Shen, and G. Sun. Squeeze-and-excitation net- works. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7132–7141, 2018

  13. [21]

    Hu, J.-B

    Y .-T. Hu, J.-B. Huang, and A. G. Schwing. Unsupervised video object segmentation using motion saliency-guided spatio-temporal propagation. In Proceedings of the Euro- pean Conference on Computer Vision (ECCV) , pages 786– 802, 2018

  14. [22]

    Huang, P

    C. Huang, P. Chen, X. Yang, and K.-T. T. Cheng. Redbee: A visual-inertial drone system for real-time moving object detection. In 2017 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages 1725–1731. IEEE, 2017

  15. [23]

    Huang, D

    K. Huang, D. Tao, Y . Yuan, X. Li, and T. Tan. Biologically inspired features for scene classification in video surveil- lance. IEEE Transactions on Systems, Man, and Cybernetics, Part B (Cybernetics), 41(1):307–313, 2010

  16. [24]

    Keuper, S

    M. Keuper, S. Tang, B. Andres, T. Brox, and B. Schiele. Motion segmentation & multiple object tracking by corre- lation co-clustering. IEEE transactions on pattern analysis and machine intelligence, 2018

  17. [25]

    C. Kim, F. Li, and J. M. Rehg. Multi-object tracking with neural gating using bilinear lstm. In Proceedings of the Eu- ropean Conference on Computer Vision (ECCV), pages 200– 215, 2018

  18. [26]

    Law and J

    H. Law and J. Deng. Cornernet: Detecting objects as paired keypoints. CoRR, abs/1808.01244, 2018

  19. [27]

    C. Li, X. Sun, J. Cai, P. Xu, C. Li, L. Zhang, F. Yang, J. Zheng, J. Feng, Y . Zhai, et al. Intelligent mobile drone system based on real-time object detection. BIOCELL, 1(1), 2019

  20. [28]

    Z. Li, C. Peng, G. Yu, X. Zhang, Y . Deng, and J. Sun. Light- head R-CNN: in defense of two-stage object detector.CoRR, abs/1711.07264, 2017

  21. [29]

    Z. Li, C. Peng, G. Yu, X. Zhang, Y . Deng, and J. Sun. Detnet: A backbone network for object detection. CoRR, abs/1804.06215, 2018

  22. [30]

    T.-Y . Lin, P. Doll´ar, R. Girshick, K. He, B. Hariharan, and S. Belongie. Feature pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2117–2125, 2017

  23. [31]

    T.-Y . Lin, P. Goyal, R. Girshick, K. He, and P. Doll´ar. Focal loss for dense object detection. In Proceedings of the IEEE international conference on computer vision , pages 2980– 2988, 2017

  24. [32]

    T.-Y . Lin, M. Maire, S. Belongie, J. Hays, P. Perona, D. Ra- manan, P. Doll´ar, and C. L. Zitnick. Microsoft coco: Com- mon objects in context. InEuropean conference on computer vision, pages 740–755. Springer, 2014

  25. [33]

    W. Liu, D. Anguelov, D. Erhan, C. Szegedy, S. Reed, C.- Y . Fu, and A. C. Berg. Ssd: Single shot multibox detector. In European conference on computer vision , pages 21–37. Springer, 2016

  26. [34]

    F. Meng, H. Li, Q. Wu, K. N. Ngan, and J. Cai. Seeds- based part segmentation by seeds propagation and region convexity decomposition. IEEE Transactions on Multime- dia, 20(2):310–322, 2017

  27. [35]

    Mitrokhin, C

    A. Mitrokhin, C. Ferm ¨uller, C. Parameshwara, and Y . Aloi- monos. Event-based moving object detection and tracking. In 2018 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pages 1–9. IEEE, 2018

  28. [36]

    Mitrokhin, C

    A. Mitrokhin, C. Ye, C. Fermuller, Y . Aloimonos, and T. Delbruck. Ev-imo: Motion segmentation dataset and learning pipeline for event cameras. arXiv preprint arXiv:1903.07520, 2019

  29. [37]

    O ˇsep, W

    A. O ˇsep, W. Mehner, P. V oigtlaender, and B. Leibe. Track, then decide: Category-agnostic vision-based multi-object tracking. In 2018 IEEE International Conference on Robotics and Automation (ICRA), pages 1–8. IEEE, 2018

  30. [38]

    Pirsiavash, D

    H. Pirsiavash, D. Ramanan, and C. C. Fowlkes. Globally- optimal greedy algorithms for tracking a variable number of objects. In CVPR 2011, pages 1201–1208. IEEE, 2011

  31. [39]

    Ranjan, V

    A. Ranjan, V . Jampani, L. Balles, K. Kim, D. Sun, J. Wulff, and M. J. Black. Competitive collaboration: Joint unsuper- vised learning of depth, camera motion, optical flow and mo- tion segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recogniti...

  32. [40]

    Redmon, S

    J. Redmon, S. Divvala, R. Girshick, and A. Farhadi. You only look once: Unified, real-time object detection. In Pro- ceedings of the IEEE conference on computer vision and pat- tern recognition, pages 779–788, 2016

  33. [41]

    Redmon and A

    J. Redmon and A. Farhadi. Yolo9000: better, faster, stronger. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7263–7271, 2017

  34. [42]

    Redmon and A

    J. Redmon and A. Farhadi. Yolov3: An incremental improve- ment. arXiv preprint arXiv:1804.02767, 2018

  35. [43]

    S. Ren, K. He, R. Girshick, and J. Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In Advances in neural information processing systems , pages 91–99, 2015

  36. [44]

    X. Wang. Intelligent multi-camera video surveillance: A re- view. Pattern recognition letters, 34(1):3–19, 2013

  37. [45]

    L. Wen, W. Li, J. Yan, Z. Lei, D. Yi, and S. Z. Li. Mul- tiple target tracking based on undirected hierarchical rela- tion hypergraph. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1282–1289, 2014

  38. [46]

    Wojke and A

    N. Wojke and A. Bewley. Deep cosine metric learning for person re-identification. In 2018 IEEE winter conference on applications of computer vision (WACV), pages 748–756. IEEE, 2018

  39. [47]

    Wojke, A

    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), pages 3645–3649. IEEE, 2017

  40. [48]

    Q. Wu, H. Li, F. Meng, and K. N. Ngan. Toward a blind qual- ity metric for temporally distorted streaming video. IEEE Transactions on Broadcasting, 64(2):367–378, 2018

  41. [49]

    Yanmaz, S

    E. Yanmaz, S. Yahyanejad, B. Rinner, H. Hellwagner, and C. Bettstetter. Drone networks: Communications, coordina- tion, and sensing. Ad Hoc Networks, 68:1–15, 2018

  42. [50]

    Y .-c. Yoon, A. Boragule, Y .-m. Song, K. Yoon, and M. Jeon. Online multi-object tracking with historical appearance matching and scene adaptive detection filtering. In2018 15th IEEE International conference on advanced video and signal based surveillance (AVSS), pages 1–6. IEEE, 2018

  43. [51]

    Y . Yuan, Y . Feng, and X. Lu. Statistical hypothesis detec- tor for abnormal event detection in crowded scenes. IEEE transactions on cybernetics, 47(11):3597–3608, 2016

  44. [52]

    Y . Yuan, Z. Jiang, and Q. Wang. Hdpa: Hierarchical deep probability analysis for scene parsing. In 2017 IEEE Inter- national Conference on Multimedia and Expo (ICME), pages 313–318. IEEE, 2017

  45. [53]

    Zhang, L

    S. Zhang, L. Wen, X. Bian, Z. Lei, and S. Z. Li. Single-shot refinement neural network for object detection. In Proceed- ings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 4203–4212, 2018

  46. [54]

    H. Zhou, W. Ouyang, J. Cheng, X. Wang, and H. Li. Deep continuous conditional random fields with asymmetric inter- object constraints for online multi-object tracking. IEEE Transactions on Circuits and Systems for Video Technology, 29(4):1011–1022, 2018

  47. [55]

    J. Zhu, H. Yang, N. Liu, M. Kim, W. Zhang, and M.-H. Yang. Online multi-object tracking with dual matching attention networks. In Proceedings of the European Conference on Computer Vision (ECCV), pages 366–382, 2018

  48. [56]

    P. Zhu, L. Wen, D. Du, X. Bian, H. Ling, Q. Hu, Q. Nie, H. Cheng, C. Liu, X. Liu, et al. Visdrone-det2019: The vi- sion meets drone object detection in image challenge results. In Proceedings of the International Conference on Computer Vision (ICCV), pages 0–0, 2019

Pith tools

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