Go to file
2021-01-09 14:58:38 +01:00
__pycache__ WIP: add basic setup 2021-01-08 23:44:48 +01:00
.vscode WIP setup: add readme and requirements.txt 2021-01-08 23:51:51 +01:00
models add models folder 2021-01-09 14:58:38 +01:00
samples WIP: add basic setup 2021-01-08 23:44:48 +01:00
.gitignore add models folder 2021-01-09 14:58:38 +01:00
config.yaml add models folder 2021-01-09 14:58:38 +01:00
example.py WIP: add basic setup 2021-01-08 23:44:48 +01:00
LICENSE Initial commit 2020-12-19 18:26:10 +01:00
loader.py WIP: add basic setup 2021-01-08 23:44:48 +01:00
README.md update README 2021-01-08 23:55:06 +01:00
requirements.txt update deps 2021-01-09 14:58:24 +01:00
train.py WIP: add basic setup 2021-01-08 23:44:48 +01:00

realtime-body-tracking

Installation

This project is using python version 3.6.0. It is also recommended to use anaconda for managing your python environments.

Conda Environment

Create a new conda env by typing

conda create --name tum-3d-proj python=3.6

When using VSCode the IDE should automatically use the python interpreter created by conda.

Pip packages

The required pip packages are stored within the requirements.txt file and can be installed via

pip install -r requirements.txt

Exporting imported packages to pip

Since pip is trash and does not save imported packages in a file within the project you have to force it to do so.

pip freeze > requirements.txt

OpenPose