Spaces:
Running
Running
File size: 671 Bytes
95f8bbc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
AlphaPose - Speeding Up
============================================
Run AlphaPose for a video, speeding up by increasing the confidence and lowering the NMS threshold:
```
python3 video_demo.py --video ${path to video} --outdir examples/results/ --conf 0.5 --nms 0.45
```
For users with GPU memory >= 8GB, I suggest increasing the detection batch:
```
python3 demo.py --indir ${img_directory} --outdir examples/res --detbatch 2
```
For users that do not need to detect small size persons, I suggest lowering the input size of detection network. The inp_dim should be multiple of 32.
```
python3 demo.py --indir ${img_directory} --outdir examples/res --inp_dim 480
``` |