Pith. sign in

REVIEW 3 major objections 4 minor 3 cited by

FastPose: Towards Real-time Pose Estimation and Tracking via Scale-normalized Multi-task Networks

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

Pith's one-line read A single multi-task network can track poses in real time at 29 FPS

desk verdict A genuinely useful pose-estimation system with solid ablations, but the tracking similarity metric in Eq. (2) is written backwards and the headline IDS reduction is not reproducible as published. read the letter →

arxiv 1908.05593 v1 pith:XOUUUEIM submitted 2019-08-15 cs.CV

classification cs.CV
keywords multi-personposeestimationtrackingmulti-tasklearningscale-normalizedimageandfeaturepyramidnetworkspersonre-identificationocclusion-awarereal-timeinference
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

This paper argues that an end-to-end multi-task network can perform human detection, pose estimation, and person re-identification in one forward pass, and that this unified design can be made competitive with slower two-stage trackers. The proposed FastPose framework targets the scale-variation bottleneck that holds unified top-down pose estimators back, using a scale-normalized image and feature pyramid (SIFP) that improves accuracy without multi-scale testing. For tracking, it gates Re-ID feature updates on how many keypoints pass a confidence threshold, treating keypoint visibility as an occlusion signal. The paper reports that this reduces identity switches by 37 percent and that FastPose-18 runs at 29.4 FPS on PoseTrack val while keeping mAP and MOTA scores near the top of the field. The practical stake is that video pose tracking, which usually requires a slow cascade of separate networks, can instead run as a single real-time system.

What carries the argument

The load-bearing object is SIFP, a scale-normalized image and feature pyramid. It combines an image pyramid whose levels are cropped or padded to one fixed size with a feature pyramid network, and restricts each training object to the pyramid levels where its scale $\sqrt{wh}$ falls in $[16,560]$. This transfers the scale-invariance that two-stage methods get from per-box rescaling back into a unified detector, so single-scale testing no longer causes a domain shift. The second mechanism is occlusion-aware Re-ID gating: a tracklet's appearance embedding is only updated when the detection has more than $\theta_{\mathrm{valid}}=10$ keypoints above confidence $\gamma_{\mathrm{valid}}=0.2$, treating visible keypoints as a proxy for occlusion state; the association metric blends IoU and normalized feature distance with weight $\theta_{\mathrm{pos}}=0.5$.

What would settle it

Rerun the Table 1(c) ablation with the gating thresholds swept (confidence 0.1/0.3, keypoint count 8/12): if identity-switch counts do not stay well below the ungated baseline across these settings, then the reported 37 percent reduction is a threshold artifact rather than evidence that keypoint-count gating detects occlusion.

Watch

Extended reading notes

Core claim

The central claim is that the historical accuracy gap between unified and two-stage top-down pose trackers is not architectural but a scale-handling problem, and that fixing it makes the unified approach viable at real time. FastPose builds a multi-task network with three heads on a shared backbone: boxes from an RPN, keypoint heatmaps from a pose head, and 128-dimensional Re-ID embeddings from an identity head. Training with SIFP—which resizes the image into a pyramid, keeps only objects whose scale $\sqrt{wh}$ falls in $[16,560]$ at each level, and lets the feature pyramid assign each object to the right level—raises pose estimation mAP by 2.4 on COCO minival and tracking MOTA by 2.7 on PoseTrack val for a ResNet-50 backbone, at no extra inference cost. For tracking, the paper replaces pure IoU linking with a similarity that averages IoU and normalized Re-ID distance, but only updates a tracklet's appearance feature when at least 10 keypoints exceed confidence 0.2; this occlusion gating is what cuts identity switches from 243.1 to 153.9 (37 percent). The authors state the result as a speed–accuracy operating point: FastPose-18 at 29.4 FPS with 63.1 mAP and 56.8 MOTA, and FastPose-50 at 12.2 FPS with 69.7 mAP and 62.8 MOTA.

Load-bearing premise

The load-bearing premise is that counting the person's confidently detected keypoints tells you whether the person is occluded, so freezing the tracklet's appearance feature until enough keypoints reappear improves identity matching; the paper does not test how much of its 37 percent identity-switch reduction depends on the two chosen thresholds.

Editorial extensions

If this is right

  • A unified top-down network can serve as a real-time pose tracker, so real-world applications such as surveillance, human-computer interaction, and action recognition need not choose between speed and accuracy at the level this paper demonstrates.
  • SIFP is a training-side fix that costs no extra inference time; the paper's ablations show it improves pose mAP and tracking MOTA across four different backbones, including MobileNet-v2, ResNet-18, ResNet-50, and ResNet-101.
  • The paper's 37 percent reduction in identity switches shows that keypoint-confidence gating is an effective lightweight addition to Re-ID-based data association.
  • Deeper backbones improve accuracy but with diminishing returns: ResNet-101 adds only 0.8 mAP over ResNet-50 while increasing FLOPs by about a third, so ResNet-50 is presented as the speed-accuracy sweet spot.
  • FastPose-50 nearly matches the two-stage FlowTrack-50 on MOTA (62.8 vs 62.9) while running more than 60 times faster, which positions unified top-down methods as a practical candidate for video pose tracking.

Reading between the lines

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

  • A direct sensitivity test the paper does not run: sweep $\gamma_{\mathrm{valid}}$ and $\theta_{\mathrm{valid}}$ on PoseTrack val; if the 37 percent identity-switch reduction survives a wide range of thresholds, the occlusion-gating story is robust, but if it peaks only at exactly 0.2 and 10, the headline number may be threshold-tuned.
  • The Re-ID embeddings are trained only on the SSM and PRW person-search datasets; because PoseTrack videos have different camera motion and crowd dynamics, evaluating the same occlusion gating with embeddings fine-tuned on PoseTrack itself would isolate how much of the gain comes from gating versus from feature quality.
  • SIFP's cropping and padding recipe is not specific to pose estimation, so instance segmentation and dense-pose tasks that share the same scale-variation bottleneck could adopt SIFP by the same logic; the paper's across-backbone consistency suggests the improvement is systematic.
  • Because the tracking module runs at 66.7 FPS independent of the detector, the framework's overall speed is bounded by the multi-task network; architectures lighter than ResNet-18, extrapolating from the MobileNet-v2 result, could push the system toward embedded or mobile deployment at some accuracy cost.
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 / 4 minor

Summary. The paper presents FastPose, a unified multi-task network that jointly performs human detection, pose estimation, and person re-identification, augmented by a scale-normalized image and feature pyramid (SIFP) for scale robustness and an occlusion-aware re-ID tracking strategy. On PoseTrack, FastPose-18 runs at 29.4 FPS with 63.1 mAP and 56.8 MOTA, and the occlusion-aware strategy is reported to cut identity switches by 37% relative to an IoU-only baseline. The paper claims that SIFP steadily improves pose estimation and tracking across MobileNet-V2, ResNet-18/50/101 backbones.

Significance. If the claims are correct, the paper makes a practical contribution by showing that a single end-to-end top-down network can approach the accuracy of two-stage methods at real-time speed. The ablation tables provide consistent evidence that SIFP helps across backbones, and the occlusion-aware gating of Re-ID features is a sensible idea. The strength is the systematic comparison of backbones and the explicit speed-accuracy trade-off. However, the internal inconsistency in Eq. (2) and missing implementation details undermine confidence until corrected.

major comments (3)
  1. [Sec. 3.3.3, Eq. (2)] The similarity metric S in Eq. (2) is written as S = theta_pos*IoU + (1-theta_pos)*min(dist(fd,ftrack),sigma_max)/sigma_max. Because the second term grows as the Euclidean feature distance increases, maximizing S would prefer dissimilar appearances and minimizing S would penalize spatial overlap; neither is consistent with the stated use of S as a similarity metric for association. The reported 37% IDS reduction in Table 1(c) cannot be derived from Eq. (2) as written. Please correct the equation (e.g., replace min(dist,sigma_max)/sigma_max with 1 - min(dist,sigma_max)/sigma_max), specify whether association maximizes or minimizes S, and assign a value to sigma_max in Sec. 3.4. The update rule for the tracklet appearance feature ftrack is also missing, so the tracking module is not fully reproducible.
  2. [Sec. 3.3.1 and Table 1(c)] The occlusion-aware strategy depends on two thresholds, gamma_valid (set to 0.2) and theta_valid (Nvalid > 10), yet the paper reports no sensitivity analysis. The headline 37% reduction in ID switches is a single operating point; without evidence that this gain persists over a reasonable range of thresholds, it is unclear whether the improvement is robust or a result of threshold tuning. Please add an ablation over these parameters or at least report performance for a few settings.
  3. [Sec. 3.4] The training section specifies datasets and the SIFP scale range but omits several parameters essential for reproduction, including the learning rate schedule, loss weights for the detection, pose, and Re-ID branches, number of training epochs/iterations, batch size, optimizer, and how the image pyramid levels are sampled per iteration. Without these, the SIFP gains in Table 1(a)-(b) and the overall results cannot be independently verified. Please provide a complete training recipe or release code.
minor comments (4)
  1. [Abstract, contribution (4)] The abstract states '29.4 frames per image (FPS)'; the unit should read 'frames per second' or simply 'FPS'.
  2. [Table 1(b)] The column labeled 'mAP' in Table 1(b) is not defined; clarify that it is the total mAP over all keypoints on PoseTrack val to match Table 2.
  3. [Sec. 3.3.2] The appearance-feature update rule is described only qualitatively ('updated if the Re-ID feature of matched detection is valid'); specify the actual update formula, e.g., an exponential moving average with a stated momentum.
  4. [General] No code or trained models are released, and all results appear to be from a single run without error bars or variance estimates; please state this explicitly and, if possible, report mean and standard deviation over multiple runs.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular dependency: FastPose's reported gains are empirical results measured on external benchmarks; self-citations are background only.

full rationale

FastPose is an empirical systems paper; the central claims (real-time speed, pose accuracy, MOTA, and the 37% IDS reduction) are measurements on PoseTrack/COCO and controlled ablations, not derived from an equation whose inputs are the outputs. Table 1(c) fixes FP/FN from the same MTN and isolates the tracking strategy, so the IDS comparison is an ablation, not a fitted quantity renamed as a prediction. SIFP is explicitly acknowledged as a modification of prior external work ('In conclusion, SIFP is a modified version of SNIP') and is ablated against SNIP-style training and multi-scale testing in Table 1(d)-(e). The two self-citations ([31], [59]) occur in literature-review sentences about Re-ID trackers and pose tracking; neither supplies a load-bearing premise, uniqueness theorem, or ansatz. Eq. (1) is a heuristic for estimating occlusion, and its effect is measured, not assumed. The most serious issue is Eq. (2) in Sec. 3.3.3, where the normalized distance term increases with feature distance, so the printed metric would prefer dissimilar appearances; sigma_max is also left unspecified. This is a correctness/reproducibility flaw, not circularity, because the reported IDS reduction does not reduce by construction to that equation—a corrected sign convention must underlie the experiments. Accordingly, no circular step is present.

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

The paper is an empirical systems paper, so the load-bearing assumptions are domain assumptions about keypoint confidence as an occlusion signal, cross-dataset Re-ID transfer, and scale handling. There are no mathematical derivations and no invented physical entities, but there are several hand-set thresholds with no sensitivity analysis, and one parameter (sigma_max) is left undefined.

free parameters (5)
  • gamma_valid = 0.2
    Keypoint confidence threshold for counting a joint as visible (Eq. 1); set in Sec. 3.4 without sensitivity analysis.
  • theta_valid = 10
    Minimum number of valid keypoints needed for a Re-ID feature to be considered usable (Sec. 3.4); set without sensitivity analysis.
  • theta_pos = 0.5
    Weight balancing IoU and appearance distance in the tracking similarity metric (Eq. 2, Sec. 3.4); set without sensitivity analysis.
  • sigma_max = not reported
    Upper limit for normalizing Euclidean distance in Eq. 2; the paper never states its value, leaving the metric underdetermined.
  • scale range and pyramid factors = [16, 560] and {2.0, 1.5, 1.0, 0.75}
    Scale range and image pyramid multipliers for SIFP (Sec. 3.4); adopted from SNIP-style training, not justified for pose estimation specifically.
assumptions (5)
  • domain assumption Backbones (ResNet, MobileNet-V2), FPN, and RoIAlign behave as described in the cited literature.
    The network relies on these off-the-shelf components functioning as in Mask R-CNN [24] and FPN [33].
  • domain assumption Keypoint confidence thresholds separate visible from occluded joints.
    This is required for the occlusion-aware Re-ID strategy in Eq. 1 and Sec. 3.3.
  • domain assumption Re-ID features trained on SSM and PRW transfer to PoseTrack video frames.
    The Re-ID branch is trained only on person-search datasets and then used for tracking on PoseTrack without domain adaptation (Sec. 3.4).
  • domain assumption Scale variation is the dominant bottleneck for unified top-down pose estimators.
    This is the motivation for SIFP; argued in Sec. 1 and 3.2, not proven by controlled experiments isolating scale from other factors.
  • domain assumption Image-centric multi-task training with selective loss backpropagation converges to a useful shared representation.
    Training recipe in Sec. 3.4 combines five datasets with unrelated task losses dropped per image; no analysis of task balancing or gradient conflicts is given.

how reviews work

0 comments
Cite this review

Pith. "Pith review of FastPose: Towards Real-time Pose Estimation and Tracking via Scale-normalized Multi-task Networks." pith.science (2026). https://pith.science/paper/XOUUUEIM

@misc{pith2026190805593,
  author       = {Pith},
  title        = {Pith review of: FastPose: Towards Real-time Pose Estimation and Tracking via Scale-normalized Multi-task Networks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/XOUUUEIM}},
  note         = {Machine review of arXiv:1908.05593}
}
read the original abstract

Both accuracy and efficiency are significant for pose estimation and tracking in videos. State-of-the-art performance is dominated by two-stages top-down methods. Despite the leading results, these methods are impractical for real-world applications due to their separated architectures and complicated calculation. This paper addresses the task of articulated multi-person pose estimation and tracking towards real-time speed. An end-to-end multi-task network (MTN) is designed to perform human detection, pose estimation, and person re-identification (Re-ID) tasks simultaneously. To alleviate the performance bottleneck caused by scale variation problem, a paradigm which exploits scale-normalized image and feature pyramids (SIFP) is proposed to boost both performance and speed. Given the results of MTN, we adopt an occlusion-aware Re-ID feature strategy in the pose tracking module, where pose information is utilized to infer the occlusion state to make better use of Re-ID feature. In experiments, we demonstrate that the pose estimation and tracking performance improves steadily utilizing SIFP through different backbones. Using ResNet-18 and ResNet-50 as backbones, the overall pose tracking framework achieves competitive performance with 29.4 FPS and 12.2 FPS, respectively. Additionally, occlusion-aware Re-ID feature decreases the identification switches by 37% in the pose tracking process.

Figures

Figures reproduced from arXiv: 1908.05593 by the authors.

Figure 1
Figure 1. Top: Inference speed and MOTA performance on Pose [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. The pipeline of the FastPose framework. In training process of multi-task network (MTN), a scale-normalized paradigm which [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 3 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. An End-to-End Framework for Video Multi-Person Pose Estimation

    cs.CV 2025-09 reject novelty 4.0 of 10

    An end-to-end video pose transformer built on PETR with spatio-temporal encoders and an instance consistency loss reaches 83.0 mAP on PoseTrack2017 and appears around 4x faster than DCPose.

  2. Optimizing Human Pose Estimation Through Focused Human and Joint Regions

    cs.CV 2025-01 conditional novelty 4.0 of 10

    VREMD combines human and keypoint masks with bidirectional deformable cross-attention to reach state-of-the-art mAP on three PoseTrack benchmarks.

  3. High Performance Visual Object Tracking with Unified Convolutional Networks

    cs.RO 2019-08 conditional novelty 4.0 of 10

    An end-to-end convolutional tracker with a peak-versus-noise model update criterion achieves state-of-the-art accuracy on OTB2013/2015 and VOT2015/2016 while running at 58 FPS.

Reference graph

Works this paper leans on

65 extracted references · 59 canonical work pages · cited by 3 Pith papers

  1. [1]

    E. H. Adelson, C. H. Anderson, J. R. Bergen, P. J. Burt, and J. M. Ogden. Pyramid methods in image processing. RCA Engineer, 29(6):33–41, 1984. 3

  2. [2]

    Andriluka, U

    M. Andriluka, U. Iqbal, A. Milan, E. Insafutdinov, L. Pishchulin, J. Gall, and B. Schiele. Posetrack: A bench- mark for human pose estimation and tracking. In IEEE Con- ference on Computer Vision and Pattern Recognition, pages 5167–5176, 2018. 1, 6, 7, 8

  3. [3]

    Andriluka, L

    M. Andriluka, L. Pishchulin, P. Gehler, and B. Schiele. 2d human pose estimation: New benchmark and state of the art analysis. In IEEE Conference on Computer Vision and Pat- tern Recognition, pages 3686–3693, 2014. 1, 2, 6

  4. [4]

    Andriluka, S

    M. Andriluka, S. Roth, and B. Schiele. Pictorial structures revisited: People detection and articulated pose estimation. In IEEE Conference on Computer Vision and Pattern Recog- nition, pages 1014–1021, 2009. 1, 3

  5. [5]

    Bae and K.-J

    S.-H. Bae and K.-J. Yoon. Confidence-based data associa- tion and discriminative deep appearance learning for robust online multi-object tracking. IEEE Transactions on Pattern Analysis and Machine Intelligence, 40(3):595–610, 2018. 2

  6. [6]

    Bochinski, V

    E. Bochinski, V . Eiselein, and T. Sikora. High-speed tracking-by-detection without using image information. In 2017 14th IEEE International Conference on Advanced Video and Signal Based Surveillance (AVSS) , pages 1–6,

  7. [7]

    Z. Cai, Q. Fan, R. S. Feris, and N. Vasconcelos. A unified multi-scale deep convolutional neural network for fast ob- ject detection. In European Conference on Computer Vision, pages 354–370, 2016. 3

  8. [8]

    Z. Cao, T. Simon, S.-E. Wei, and Y . Sheikh. Realtime multi- person 2d pose estimation using part affinity fields. In IEEE Conference on Computer Vision and Pattern Recognition ,

Show all 65 references
  1. [9]

    R. Caruana. Multitask learning. Machine learning , 28(1):41–75, 1997. 3

  2. [10]

    L.-C. Chen, G. Papandreou, I. Kokkinos, K. Murphy, and A. L. Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully con- nected crfs. IEEE Transactions on Pattern Analysis and Ma- chine Intelligence, 40(4):834–848, 2018. 3

  3. [11]

    T. Chen, M. Li, Y . Li, M. Lin, N. Wang, M. Wang, T. Xiao, B. Xu, C. Zhang, and Z. Zhang. Mxnet: A flexible and effi- cient machine learning library for heterogeneous distributed systems. arXiv preprint arXiv:1512.01274, 2015. 8

  4. [12]

    Y . Chen, Z. Wang, Y . Peng, Z. Zhang, G. Yu, and J. Sun. Cas- caded pyramid network for multi-person pose estimation. In IEEE Conference on Computer Vision and Pattern Recogni- tion, 2018. 1, 2, 3

  5. [13]

    Collobert and J

    R. Collobert and J. Weston. A unified architecture for natural language processing: Deep neural networks with multitask learning. In International Conference on Machine Learning, pages 160–167, 2008. 3

  6. [14]

    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,

  7. [15]

    L. Deng, G. Hinton, and B. Kingsbury. New types of deep neural network learning for speech recognition and related applications: An overview. In IEEE International Con- ference on Acoustics, Speech and Signal Processing , pages 8599–8603, 2013. 3

  8. [16]

    Doering, U

    A. Doering, U. Iqbal, and J. Gall. Joint flow: Temporal flow fields for multi person tracking. In British Machine Vision Conference, 2018. 1, 3, 7, 8

  9. [17]

    H.-S. Fang, S. Xie, Y .-W. Tai, and C. Lu. Rmpe: Regional multi-person pose estimation. In IEEE International Confer- ence on Computer Vision, pages 2334–2343, 2017. 8

  10. [18]

    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, 2010. 1, 3

  11. [19]

    W. Feng, Z. Hu, W. Wu, J. Yan, and W. Ouyang. Multi- object tracking with multiple cues and switcher-aware clas- sification. arXiv preprint arXiv:1901.06129, 2019. 2

  12. [20]

    Ghosn and Y

    J. Ghosn and Y . Bengio. Multi-task learning for stock selec- tion. In Advances in Neural Information Processing Systems, pages 946–952, 1997. 3

  13. [21]

    Girdhar, G

    R. Girdhar, G. Gkioxari, L. Torresani, M. Paluri, and D. Tran. Detect-and-track: Efficient pose estimation in videos. In IEEE Conference on Computer Vision and Pattern Recog- nition, pages 350–359, 2018. 1, 2, 3, 5, 6, 7, 8

  14. [22]

    Girshick

    R. Girshick. Fast R-CNN. In IEEE International Conference on Computer Vision, pages 1440–1448, 2015. 3

  15. [23]

    Z. Hao, Y . Liu, H. Qin, J. Yan, X. Li, and X. Hu. Scale-aware face detection. In IEEE Conference on Computer Vision and Pattern Recognition, pages 6186–6195, 2017. 2

  16. [24]

    K. He, G. Gkioxari, P. Doll ´ar, and R. Girshick. Mask R- CNN. In IEEE International Conference on Computer Vi- sion, 2017. 1, 2, 3, 6

  17. [25]

    K. He, X. Zhang, S. Ren, and J. Sun. Deep residual learning for image recognition. In IEEE Conference on Computer Vision and Pattern Recognition, pages 770–778, 2016. 4

  18. [26]

    Insafutdinov, M

    E. Insafutdinov, M. Andriluka, L. Pishchulin, S. Tang, E. Levinkov, B. Andres, and B. Schiele. Arttrack: Articu- lated multi-person tracking in the wild. In IEEE Conference on Computer Vision and Pattern Recognition, 2017. 1, 2, 3

  19. [27]

    Insafutdinov, L

    E. Insafutdinov, L. Pishchulin, B. Andres, M. Andriluka, and B. Schiele. Deepercut: A deeper, stronger, and faster multi- person pose estimation model. In European Conference on Computer Vision, pages 34–50, 2016. 1, 2, 3

  20. [28]

    Iqbal, A

    U. Iqbal, A. Milan, and J. Gall. Posetrack: Joint multi-person pose estimation and tracking. In IEEE Conference on Com- puter Vision and Pattern Recognition, 2017. 1, 2, 3

  21. [29]

    B. Li, J. Yan, W. Wu, Z. Zhu, and X. Hu. High performance visual tracking with siamese region proposal network. In IEEE Conference on Computer Vision and Pattern Recogni- tion, pages 8971–8980, 2018. 1

  22. [30]

    H. Li, Z. Lin, X. Shen, J. Brandt, and G. Hua. A convolu- tional neural network cascade for face detection. In IEEE Conference on Computer Vision and Pattern Recognition , pages 5325–5334, 2015. 3

  23. [31]

    P. Li, J. Zhang, Z. Zhu, Y . Li, L. Jiang, and G. Huang. State- aware re-identification feature for multi-target multi-camera tracking. In IEEE Conference on Computer Vision and Pat- tern Recognition Workshops, 2019. 2

  24. [32]

    Y . Li, X. Chen, Z. Zhu, L. Xie, G. Huang, D. Du, and X. Wang. Attention-guided unified network for panoptic seg- mentation. arXiv preprint arXiv:1812.03904, 2018. 3

  25. [33]

    T.-Y . Lin, P. Doll´ar, R. Girshick, K. He, B. Hariharan, and S. Belongie. Feature pyramid networks for object detection. In IEEE Conference on Computer Vision and Pattern Recog- nition, pages 2117–2125, 2017. 2, 3, 4, 5

  26. [34]

    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. In European Conference on Com- puter Vision, pages 740–755, 2014. 1, 2, 6

  27. [35]

    Najibi, P

    M. Najibi, P. Samangouei, R. Chellappa, and L. S. Davis. SSH: Single stage headless face detector. In IEEE Inter- national Conference on Computer Vision, pages 4875–4884,

  28. [36]

    Newell, K

    A. Newell, K. Yang, and J. Deng. Stacked hourglass net- works for human pose estimation. In European Conference on Computer Vision, pages 483–499, 2016. 1, 2, 3

  29. [37]

    Papandreou, T

    G. Papandreou, T. Zhu, N. Kanazawa, A. Toshev, J. Tomp- son, C. Bregler, and K. Murphy. Towards accurate multi- person pose estimation in the wild. In IEEE Conference on Computer Vision and Pattern Recognition, 2017. 1, 2, 3

  30. [38]

    Pishchulin, E

    L. Pishchulin, E. Insafutdinov, S. Tang, B. Andres, M. An- driluka, P. V . Gehler, and B. Schiele. Deepcut: Joint subset partition and labeling for multi person pose estimation. In IEEE Conference on Computer Vision and Pattern Recogni- tion, pages 4929–4937, 2016. 1, 2, 3

  31. [39]

    Pishchulin, A

    L. Pishchulin, A. Jain, M. Andriluka, T. Thorm ¨ahlen, and B. Schiele. Articulated people detection and pose estimation: Reshaping the future. In IEEE Conference on Computer Vi- sion and Pattern Recognition, pages 3178–3185, 2012. 1

  32. [40]

    S. Ren, K. He, R. Girshick, and J. Sun. Faster R-CNN: To- wards real-time object detection with region proposal net- works. In Advances in Neural Information Processing Sys- tems, pages 91–99, 2015. 3

  33. [41]

    M. R. Ronchi and P. Perona. Benchmarking and error di- agnosis in multi-instance pose estimation. In IEEE Inter- national Conference on Computer Vision , pages 369–378,

  34. [42]

    S. Ruder. An overview of multi-task learning in deep neural networks. arXiv preprint arXiv:1706.05098, 2017. 3

  35. [43]

    Sandler, A

    M. Sandler, A. Howard, M. Zhu, A. Zhmoginov, and L.-C. Chen. Mobilenetv2: Inverted residuals and linear bottle- necks. In IEEE Conference on Computer Vision and Pattern Recognition, pages 4510–4520, 2018. 4

  36. [44]

    Singh and L

    B. Singh and L. S. Davis. An analysis of scale invariance in object detection snip. In IEEE Conference on Computer Vision and Pattern Recognition, pages 3578–3587, 2018. 2, 3, 4, 5, 7

  37. [45]

    Singh, M

    B. Singh, M. Najibi, and L. S. Davis. Sniper: Efficient multi- scale training. InAdvances in Neural Information Processing Systems, pages 9333–9343, 2018. 2, 3

  38. [46]

    J. J. Tompson, A. Jain, Y . LeCun, and C. Bregler. Joint train- ing of a convolutional network and a graphical model for human pose estimation. In Advances in Neural Information Processing Systems, pages 1799–1807, 2014. 1, 2, 3

  39. [47]

    Toshev and C

    A. Toshev and C. Szegedy. Deeppose: Human pose es- timation via deep neural networks. In IEEE Conference on Computer Vision and Pattern Recognition , pages 1653– 1660, 2014. 1, 2, 3

  40. [48]

    S.-E. Wei, V . Ramakrishna, T. Kanade, and Y . Sheikh. Con- volutional pose machines. In IEEE Conference on Computer Vision and Pattern Recognition, pages 4724–4732, 2016. 1, 2, 3

  41. [49]

    Wojke, A

    N. Wojke, A. Bewley, and D. Paulus. Simple online and realtime tracking with a deep association metric. In IEEE International Conference on Image Processing, pages 3645– 3649, 2017. 2

  42. [50]

    B. Xiao, H. Wu, and Y . Wei. Simple baselines for human pose estimation and tracking. In European Conference on Computer Vision, 2018. 1, 2, 3, 7, 8

  43. [51]

    T. Xiao, S. Li, B. Wang, L. Lin, and X. Wang. End- to-end deep learning for person search. arXiv preprint arXiv:1604.01850, 1(2), 2016. 4, 6

  44. [52]

    T. Xiao, S. Li, B. Wang, L. Lin, and X. Wang. Joint detec- tion and identification feature learning for person search. In IEEE Conference on Computer Vision and Pattern Recogni- tion, pages 3415–3424, 2017. 3

  45. [53]

    Y . Xiu, J. Li, H. Wang, Y . Fang, and C. Lu. Pose flow: Ef- ficient online pose tracking. In British Machine Vision Con- ference, 2018. 1, 3, 7, 8

  46. [54]

    F. Yang, W. Choi, and Y . Lin. Exploit all the layers: Fast and accurate cnn object detector with scale dependent pool- ing and cascaded rejection classifiers. In IEEE Conference on Computer Vision and Pattern Recognition , pages 2129– 2137, 2016. 3

  47. [55]

    S. Yang, Y . Xiong, C. C. Loy, and X. Tang. Face detection through scale-friendly deep convolutional networks. arXiv preprint arXiv:1706.02863, 2017. 3

  48. [56]

    W. Yang, S. Li, W. Ouyang, H. Li, and X. Wang. Learning feature pyramids for human pose estimation. In IEEE Inter- national Conference on Computer Vision, 2017. 1, 2, 3

  49. [57]

    F. Yu, W. Li, Q. Li, Y . Liu, X. Shi, and J. Yan. Poi: Multiple object tracking with high performance detection and appear- ance feature. In European Conference on Computer Vision, pages 36–42, 2016. 2

  50. [58]

    Zhang and Z

    C. Zhang and Z. Zhang. A survey of recent advances in face detection. 2010. 3

  51. [59]

    Zhang, Z

    R. Zhang, Z. Zhu, P. Li, R. Wu, C. Guo, G. Huang, and H. Xia. Exploiting offset-guided network for pose estima- tion and tracking. arXiv preprint arXiv:1906.01344 , 2019. 1

  52. [60]

    Zhang and Q

    Y . Zhang and Q. Yang. A survey on multi-task learning. arXiv preprint arXiv:1707.08114, 2017. 3

  53. [61]

    Zhang, P

    Z. Zhang, P. Luo, C. C. Loy, and X. Tang. Facial landmark detection by deep multi-task learning. In European Confer- ence on Computer Vision, pages 94–108, 2014. 3

  54. [62]

    Zheng, H

    L. Zheng, H. Zhang, S. Sun, M. Chandraker, Y . Yang, and Q. Tian. Person re-identification in the wild. In IEEE Con- ference on Computer Vision and Pattern Recognition, pages 1367–1376, 2017. 4, 6

  55. [63]

    B. Zhou, A. Lapedriza, J. Xiao, A. Torralba, and A. Oliva. Learning deep features for scene recognition using places database. In Advances in Neural Information Processing Sys- tems, pages 487–495, 2014. 1

  56. [64]

    J. Zhu, H. Yang, N. Liu, M. Kim, W. Zhang, and M.-H. Yang. Online multi-object tracking with dual matching atten- tion networks. In European Conference on Computer Vision, pages 366–382, 2018. 2

  57. [65]

    Z. Zhu, Q. Wang, B. Li, W. Wu, J. Yan, and W. Hu. Distractor-aware siamese networks for visual object track- ing. In European Conference on Computer Vision (ECCV), pages 101–117, 2018. 1

Pith tools

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