├── .gitattributes ├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── notebooks ├── optimizing_pose_estimation_pipeline.ipynb └── video_inference.ipynb ├── pyproject.toml ├── rt_pose ├── __init__.py ├── pipeline.py └── processing.py └── scripts ├── run_on_image.py └── run_on_video.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | fixup: 2 | ruff format rt_pose/ scripts/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/optimizing_pose_estimation_pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/notebooks/optimizing_pose_estimation_pipeline.ipynb -------------------------------------------------------------------------------- /notebooks/video_inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/notebooks/video_inference.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rt_pose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/rt_pose/__init__.py -------------------------------------------------------------------------------- /rt_pose/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/rt_pose/pipeline.py -------------------------------------------------------------------------------- /rt_pose/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/rt_pose/processing.py -------------------------------------------------------------------------------- /scripts/run_on_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/scripts/run_on_image.py -------------------------------------------------------------------------------- /scripts/run_on_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qubvel/rt-pose/HEAD/scripts/run_on_video.py --------------------------------------------------------------------------------