Techt3o's picture
7b38318811baa04ff0314e2a0700e7273cc8cccf91c9fe7f87200c3bcfd1c703
57ae837 verified
|
raw
history blame
1.11 kB
## Installation
### Pre-requirments
1. Please make sure that you have properly installed the [Docker](https://www.docker.com/) and [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html) before installation.
2. Please prepare the essential data for inference:
To download SMPL body models (Neutral, Female, and Male), you need to register for [SMPL](https://smpl.is.tue.mpg.de/) and [SMPLify](https://smplify.is.tue.mpg.de/). The username and password for both homepages will be used while fetching the demo data.
Next, run the following script to fetch demo data. This script will download all the required dependencies including trained models and demo videos.
```bash
bash fetch_demo_data.sh
```
### Usage
1. Pulling the docker image from docker hub:
```bash
docker pull yusun9/wham-vitpose-dpvo-cuda11.3-python3.9:latest
```
2. Run the code with docker environment:
```bash
cd /path/to/WHAM
docker run -v .:/code/ --rm yusun9/wham-vitpose-dpvo-cuda11.3-python3.9 python demo.py --video examples/IMG_9732.mov
```