├── .gitignore ├── README.md ├── models ├── anchors.csv ├── hand_landmark.tflite └── palm_detection_without_custom_op.tflite ├── output.gif ├── run.py ├── src ├── __init__.py ├── hand_tracker.py └── non_maximum_suppression.py └── test ├── __init__.py ├── hand_detector_nms_test.py └── test_non_maximum_suppression.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/README.md -------------------------------------------------------------------------------- /models/anchors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/models/anchors.csv -------------------------------------------------------------------------------- /models/hand_landmark.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/models/hand_landmark.tflite -------------------------------------------------------------------------------- /models/palm_detection_without_custom_op.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/models/palm_detection_without_custom_op.tflite -------------------------------------------------------------------------------- /output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/output.gif -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/run.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hand_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/src/hand_tracker.py -------------------------------------------------------------------------------- /src/non_maximum_suppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/src/non_maximum_suppression.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/hand_detector_nms_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/test/hand_detector_nms_test.py -------------------------------------------------------------------------------- /test/test_non_maximum_suppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwhale/hand_tracking/HEAD/test/test_non_maximum_suppression.py --------------------------------------------------------------------------------