Views
No views yet
| Model | Dataset | AP | #Params | Latency | GFLOPs |
|---|---|---|---|---|---|
| DETRPose-M | CROWDPOSE | 72.0 | 20.7 M | 6.86 ms | 64.9 |
pip:pip install git+https://github.com/SebastianJanampa/DETRPose.git@inference_only1from detrpose import DETR
2
3# Initialization
4model = DETR(model='detrpose_hgnetv2_m_crowdpose')
5
6# Inference
7model(source=0) # inference on a webcamDETRPose or its methods in your work, please cite the following BibTeX entries:1@misc{janampa2025detrpose,
2 title={DETRPose: Real-time end-to-end transformer model for multi-person pose estimation},
3 author={Sebastian Janampa and Marios Pattichis},
4 year={2025},
5 eprint={2506.13027},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2506.13027},
9}