├── .gitignore ├── README.md ├── data └── demos │ ├── demo_classes_2_both_hands_opt.gif │ └── hue_demo_3_optimized.gif ├── hands ├── basics.py ├── data.py ├── hands_loss.py ├── models │ ├── model_darknet_customized.py │ └── model_yolov3_tiny_backbone.py ├── multiloss.py ├── notebook_utils.py ├── utils.py └── video_prepare_process.py ├── label_tools ├── capture_video_threaded.py ├── export_labels.py ├── label_utils.py ├── label_video.py ├── pre_points_with_hands_models.py └── pre_points_with_pose_estimation.py ├── live_predict.py └── notebooks ├── data_examples.ipynb ├── model_darknet_03_01.ipynb └── model_darknet_full_01.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/README.md -------------------------------------------------------------------------------- /data/demos/demo_classes_2_both_hands_opt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/data/demos/demo_classes_2_both_hands_opt.gif -------------------------------------------------------------------------------- /data/demos/hue_demo_3_optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/data/demos/hue_demo_3_optimized.gif -------------------------------------------------------------------------------- /hands/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/basics.py -------------------------------------------------------------------------------- /hands/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/data.py -------------------------------------------------------------------------------- /hands/hands_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/hands_loss.py -------------------------------------------------------------------------------- /hands/models/model_darknet_customized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/models/model_darknet_customized.py -------------------------------------------------------------------------------- /hands/models/model_yolov3_tiny_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/models/model_yolov3_tiny_backbone.py -------------------------------------------------------------------------------- /hands/multiloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/multiloss.py -------------------------------------------------------------------------------- /hands/notebook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/notebook_utils.py -------------------------------------------------------------------------------- /hands/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/utils.py -------------------------------------------------------------------------------- /hands/video_prepare_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/hands/video_prepare_process.py -------------------------------------------------------------------------------- /label_tools/capture_video_threaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/label_tools/capture_video_threaded.py -------------------------------------------------------------------------------- /label_tools/export_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/label_tools/export_labels.py -------------------------------------------------------------------------------- /label_tools/label_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/label_tools/label_utils.py -------------------------------------------------------------------------------- /label_tools/label_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/label_tools/label_video.py -------------------------------------------------------------------------------- /label_tools/pre_points_with_hands_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/label_tools/pre_points_with_hands_models.py -------------------------------------------------------------------------------- /label_tools/pre_points_with_pose_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/label_tools/pre_points_with_pose_estimation.py -------------------------------------------------------------------------------- /live_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/live_predict.py -------------------------------------------------------------------------------- /notebooks/data_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/notebooks/data_examples.ipynb -------------------------------------------------------------------------------- /notebooks/model_darknet_03_01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/notebooks/model_darknet_03_01.ipynb -------------------------------------------------------------------------------- /notebooks/model_darknet_full_01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holli/hands_ai/HEAD/notebooks/model_darknet_full_01.ipynb --------------------------------------------------------------------------------