Go to file
2020-12-07 15:28:54 +01:00
docs update for experiments and readme 2020-12-07 15:28:54 +01:00
kitti-eval first commit 2020-08-20 11:33:19 +02:00
monstereo update for experiments and readme 2020-12-07 15:28:54 +01:00
splits first commit 2020-08-20 11:33:19 +02:00
tests Visualization (#2) 2020-11-30 11:49:47 +01:00
.gitignore first commit 2020-08-20 11:33:19 +02:00
.pylintrc first commit 2020-08-20 11:33:19 +02:00
LICENSE update for experiments and readme 2020-12-07 15:28:54 +01:00
LICENSE.AGPL first commit 2020-08-20 11:33:19 +02:00
README.md update structure and image 2020-11-30 14:48:17 +01:00
setup.py update for experiments and readme 2020-12-07 15:28:54 +01:00

Perceiving Humans in 3D

This repository contains the code for two research projects:

  1. MonStereo: When Monocular and Stereo Meet at the Tail of 3D Human Localization
    README & Article

    monstereo 1

  2. Perceiving Humans: from Monocular 3D Localization to Social Distancing (MonoLoco++)
    README & Article

    social distancing

    monoloco_pp

Both projects has been built upon the CVPR'19 project Openpifpaf for 2D pose estimation and the ICCV'19 project MonoLoco for monocular 3D localization. All projects share the AGPL Licence.

Setup

Installation steps are the same for both projects.

Install

The installation has been tested on OSX and Linux operating systems, with Python 3.6 or Python 3.7. Packages have been installed with pip and virtual environments. For quick installation, do not clone this repository, and make sure there is no folder named monstereo in your current directory. A GPU is not required, yet highly recommended for real-time performances. MonStereo can be installed as a package, by:

pip3 install monstereo

For development of the monstereo source code itself, you need to clone this repository and then:

pip3 install sdist
cd monstereo
python3 setup.py sdist bdist_wheel
pip3 install -e .

Interfaces

All the commands are run through a main file called main.py using subparsers. To check all the commands for the parser and the subparsers (including openpifpaf ones) run:

  • python3 -m monstereo.run --help
  • python3 -m monstereo.run predict --help
  • python3 -m monstereo.run train --help
  • python3 -m monstereo.run eval --help
  • python3 -m monstereo.run prep --help

or check the file monstereo/run.py

Further instructions for prediction, preprocessing, training and evaluation can be found here: