├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── hand_crop_vis.png └── perspective_crop.png ├── hand_tracking_toolkit ├── __init__.py ├── camera.py ├── camera_distortion.py ├── dataset.py ├── evaluation.py ├── hand_models │ ├── __init__.py │ ├── mano_hand_model.py │ ├── umetrack_hand_model.py │ └── umetrack_skinning.py ├── math_utils.py ├── metrics.py ├── rasterizer.py ├── submissions.py └── visualization.py ├── pyproject.toml ├── scripts ├── run_evaluation.py └── write_annotations_files.py └── tests ├── test_forward_kinematics.py ├── test_read_dataset.py └── test_write_submission_files.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | build/ 3 | *.egg-info/ 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/README.md -------------------------------------------------------------------------------- /assets/hand_crop_vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/assets/hand_crop_vis.png -------------------------------------------------------------------------------- /assets/perspective_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/assets/perspective_crop.png -------------------------------------------------------------------------------- /hand_tracking_toolkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/__init__.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/camera.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/camera_distortion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/camera_distortion.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/dataset.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/evaluation.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/hand_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/hand_models/__init__.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/hand_models/mano_hand_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/hand_models/mano_hand_model.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/hand_models/umetrack_hand_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/hand_models/umetrack_hand_model.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/hand_models/umetrack_skinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/hand_models/umetrack_skinning.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/math_utils.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/metrics.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/rasterizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/rasterizer.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/submissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/submissions.py -------------------------------------------------------------------------------- /hand_tracking_toolkit/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/hand_tracking_toolkit/visualization.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/run_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/scripts/run_evaluation.py -------------------------------------------------------------------------------- /scripts/write_annotations_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/scripts/write_annotations_files.py -------------------------------------------------------------------------------- /tests/test_forward_kinematics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/tests/test_forward_kinematics.py -------------------------------------------------------------------------------- /tests/test_read_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/tests/test_read_dataset.py -------------------------------------------------------------------------------- /tests/test_write_submission_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/hand_tracking_toolkit/HEAD/tests/test_write_submission_files.py --------------------------------------------------------------------------------