/PosePipeline

PosePipe is a human pose estimation (HPE) pipeline to facilitate home movement analysis from videos

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

PosePipe: Open-Source Human Pose Estimation Pipeline for Clinical Research

ERD

PosePipe is a human pose estimation (HPE) pipeline to facilitate home movement analysis from videos. It uses DataJoint to manage the interdependencies between algorithms and for data management of the videos and the intermediate outputs. If has wrappers to numerous cutting edge HPE algorithms and output visualizations, which makes it easy to analyze videos differently and determine the best algorithms to use.

Getting Started

Developers

VSCode is recommended. The following can be included in your settings.json to specify black formatting settings.

{
    "python.formatting.blackArgs": [
        "--line-length=120",
        "--include='*py'",
        "--exclude='*ipynb'",
        "--extend-exclude='.env'",
        "--extend-exclude='3rdparty/*'"
    ],
    "editor.rulers": [
        120
    ]
}