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.
- Follow the Installation instructions to install PosePipe and launch a DataJoint MySQL database.
- Use the Getting Started Notebook to test the pipeline
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
]
}