https://github.com/osmr/hpeseginf
Inference script for simultaneous human pose estimation and segmentation models
https://github.com/osmr/hpeseginf
Last synced: 20 days ago
JSON representation
Inference script for simultaneous human pose estimation and segmentation models
- Host: GitHub
- URL: https://github.com/osmr/hpeseginf
- Owner: osmr
- License: mit
- Created: 2020-04-28T18:43:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-17T06:53:09.000Z (almost 6 years ago)
- Last Synced: 2025-12-19T16:11:35.882Z (6 months ago)
- Language: Python
- Size: 33.2 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simultaneous human pose estimation and segmentation
Inference Python script for simultaneous human pose estimation and segmentation MXNet models.
# Installation
```
pip3 install -r requirements.txt
```
Download model files form the repo releases.
# Usage
```
python3 demo_mx_hpeseg.py --in-video= --out-video= --model=
python3 demo_tlite_hpeseg.py --in-video= --out-video= --model=
python3 demo_onnx_hpeseg.py --in-video= --out-video= --model=
```
Example:
```
python3 demo_mx_hpeseg.py --in-video=../hpeseginf_data/vid2.mp4 --out-video=../hpeseginf_data/hpeseg_result.mp4 --model=../hpeseginf_data/ducnet_mobilenet_w1_coco
```