GitXplorerGitXplorer
m

motion-annotation-tool

public
6 stars
1 forks
2 issues

Commits

List of commits on branch master.
Unverified
129f0a2ee731b8d8e01f9794ee35dabf17696ef9

Export latest version

mmatthiasplappert committed 8 years ago
Unverified
0530bac87e1c911976879c54d7b862bcbce8691e

Add reference to paper

mmatthiasplappert committed 9 years ago
Unverified
5e58b681a35dc8cf82edbc933813a7e855cd847a

Fix README

mmatthiasplappert committed 9 years ago
Unverified
792634e206a35c56bfcbfdf3883f353539f46758

Link paper

mmatthiasplappert committed 9 years ago
Unverified
4cdad51bde8219aa2a4f427ff10d348c29c55ecb

Import commit

mmatthiasplappert committed 9 years ago

README

The README file for this repository.

Motion Annotation Tool

Installation

Start by installing all Python dependencies:

pip install -r requirements.txt

Next, install SRILM. You'll have to adapt the path to SRILM in src/proj/settings.py. You might also have to adapt other parts of the configuration depending on your needs. You should also make sure that your configuration is secure. Please consult the Django documentation for this!

Finally, you can set up the database:

cd src/
python manage.py migrate
python manage.py createsuperuser

At this point everything is ready. However, you'll probably need some motion data:

python manage.py importmotions

This step requires a free account for the KIT Whole-Body Human Motion Database. You can select different filters. At this point, only a single subject can be visualized so you should at least set the maximum number of subjects to 1. This step is going to take a while. After all motions have been imported, you might have to collect the static files and switch them to visible:

python manage.py collectstatic
python manage.py dbshell
UPDATE dataset_motionfile SET is_hidden=0;

Lastly, you can try if everything works by running a local server:

python manage.py runserver

Just visit http://localhost:8000. If everything worked, you should be able to log in using your previously created account.