Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.13 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.13 KB

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
    ]
}