├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── cfg.py ├── configs ├── cfg_convnext_base.py ├── cfg_convnext_tiny.py ├── cfg_hiera_base.py └── cfg_hiera_large.py ├── dataset.py ├── dataset ├── eval.json └── train.json ├── eval_datataset.py ├── eval_utils.py ├── evaluator.py ├── hand_net.py ├── images ├── FPS-PA-MPJPE.png ├── comparison.png ├── framework.pdf ├── framework.png ├── overview.png └── with_jiiov_logo.gif ├── infer_to_json.py ├── kp_preprocess.py ├── models ├── MANO_LEFT_C.pkl ├── MANO_RIGHT_C.pkl ├── __init__.py ├── losses.py ├── mano_torch.py ├── modules.py └── position_embedding.py ├── requirements.txt ├── train.py ├── transforms.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | train_log/ 2 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/cfg.py -------------------------------------------------------------------------------- /configs/cfg_convnext_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/configs/cfg_convnext_base.py -------------------------------------------------------------------------------- /configs/cfg_convnext_tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/configs/cfg_convnext_tiny.py -------------------------------------------------------------------------------- /configs/cfg_hiera_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/configs/cfg_hiera_base.py -------------------------------------------------------------------------------- /configs/cfg_hiera_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/configs/cfg_hiera_large.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/dataset.py -------------------------------------------------------------------------------- /dataset/eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/dataset/eval.json -------------------------------------------------------------------------------- /dataset/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/dataset/train.json -------------------------------------------------------------------------------- /eval_datataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/eval_datataset.py -------------------------------------------------------------------------------- /eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/eval_utils.py -------------------------------------------------------------------------------- /evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/evaluator.py -------------------------------------------------------------------------------- /hand_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/hand_net.py -------------------------------------------------------------------------------- /images/FPS-PA-MPJPE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/images/FPS-PA-MPJPE.png -------------------------------------------------------------------------------- /images/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/images/comparison.png -------------------------------------------------------------------------------- /images/framework.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/images/framework.pdf -------------------------------------------------------------------------------- /images/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/images/framework.png -------------------------------------------------------------------------------- /images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/images/overview.png -------------------------------------------------------------------------------- /images/with_jiiov_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/images/with_jiiov_logo.gif -------------------------------------------------------------------------------- /infer_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/infer_to_json.py -------------------------------------------------------------------------------- /kp_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/kp_preprocess.py -------------------------------------------------------------------------------- /models/MANO_LEFT_C.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/models/MANO_LEFT_C.pkl -------------------------------------------------------------------------------- /models/MANO_RIGHT_C.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/models/MANO_RIGHT_C.pkl -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/models/losses.py -------------------------------------------------------------------------------- /models/mano_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/models/mano_torch.py -------------------------------------------------------------------------------- /models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/models/modules.py -------------------------------------------------------------------------------- /models/position_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/models/position_embedding.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/train.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patienceFromZhou/simpleHand/HEAD/utils.py --------------------------------------------------------------------------------