Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Alphapose | 6,946 | 2 months ago | 2 | May 31, 2021 | 216 | other | Python | |||
Real-Time and Accurate Full-Body Multi-Person Pose Estimation&Tracking System | ||||||||||
Gluon Cv | 5,422 | 15 | 44 | 4 months ago | 1,514 | July 07, 2022 | 61 | apache-2.0 | Python | |
Gluon CV Toolkit | ||||||||||
Mmpose | 3,564 | 1 | 18 hours ago | 25 | July 06, 2022 | 133 | apache-2.0 | Python | ||
OpenMMLab Pose Estimation Toolbox and Benchmark. | ||||||||||
Human Pose Estimation.pytorch | 2,727 | 6 months ago | 100 | mit | Python | |||||
The project is an official implement of our ECCV2018 paper "Simple Baselines for Human Pose Estimation and Tracking(https://arxiv.org/abs/1804.06208)" | ||||||||||
Detectron.pytorch | 2,695 | 4 years ago | 121 | mit | Python | |||||
A pytorch implementation of Detectron. Both training from scratch and inferring directly from pretrained Detectron weights are available. | ||||||||||
Vibe | 2,470 | 6 months ago | 107 | other | Python | |||||
Official implementation of CVPR2020 paper "VIBE: Video Inference for Human Body Pose and Shape Estimation" | ||||||||||
Imgclsmob | 2,399 | 4 | a year ago | 67 | September 21, 2021 | 6 | mit | Python | ||
Sandbox for training deep learning networks | ||||||||||
Lightweight Human Pose Estimation.pytorch | 1,791 | 2 months ago | 1 | apache-2.0 | Python | |||||
Fast and accurate human pose estimation in PyTorch. Contains implementation of "Real-time 2D Multi-Person Pose Estimation on CPU: Lightweight OpenPose" paper. | ||||||||||
Ailia Models | 1,422 | 5 hours ago | 243 | Python | ||||||
The collection of pre-trained, state-of-the-art AI models for ailia SDK | ||||||||||
Icon | 1,328 | a month ago | 27 | other | Python | |||||
[CVPR 2022] ICON: Implicit Clothed humans Obtained from Normals |
[Paper
]
[arXiv
]
[Project Page
]
Human Pose Regression with Residual Log-likelihood Estimation
Jiefeng Li, Siyuan Bian, Ailing Zeng, Can Wang, Bo Pang, Wentao Liu, Cewu Lu
ICCV 2021 Oral
rlepose
:pip install cython
python setup.py develop
pip install -U 'git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI'
data
directory:mkdir data
|-- data
`-- |-- coco
| |-- annotations
| | |-- person_keypoints_train2017.json
| | `-- person_keypoints_val2017.json
| `-- images
| |-- train2017
| | |-- 000000000009.jpg
| | |-- 000000000025.jpg
| | |-- 000000000030.jpg
| | |-- ...
| `-- val2017
| |-- 000000000139.jpg
| |-- 000000000285.jpg
| |-- 000000000632.jpg
| |-- ...
|-- mpii
| |-- annotations
| | `-- annot_mpii.json
| `-- images
|-- 000001163.jpg
|-- 000003072.jpg
|-- 000004812.jpg
|--- ...
|-- h36m
`-- |-- annotations
| |-- Sample_trainmin_train_Human36M_protocol_2.json
| `-- Sample_64_test_Human36M_protocol_2.json
`-- images
|-- s_01_act_02_subact_01_ca_01
| |-- ...
|-- s_01_act_02_subact_01_ca_02
| |-- ...
`-- ...
./scripts/train.sh ./configs/256x192_res50_regress-flow.yaml train_rle_coco
./scripts/train.sh ./configs/256x192_res50_3d_h36mmpii-flow.yaml train_rle_h36m
Download the pretrained model from Google Drive.
./scripts/validate.sh ./configs/256x192_res50_regress-flow.yaml ./coco-laplace-rle.pth
Download the pretrained model from Google Drive.
./scripts/validate.sh ./configs/256x192_res50_3d_h36mmpii-flow.yaml ./h36m-laplace-rle.pth
If our code helps your research, please consider citing the following paper:
@inproceedings{li2021human,
title={Human Pose Regression with Residual Log-likelihood Estimation},
author={Li, Jiefeng and Bian, Siyuan and Zeng, Ailing and Wang, Can and Pang, Bo and Liu, Wentao and Lu, Cewu},
booktitle={ICCV},
year={2021}
}