Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amhsirak/hand-tracker
Single hand tracking module using Python and OpenCV
https://github.com/amhsirak/hand-tracker
hand-tracker opencv python
Last synced: about 1 month ago
JSON representation
Single hand tracking module using Python and OpenCV
- Host: GitHub
- URL: https://github.com/amhsirak/hand-tracker
- Owner: amhsirak
- Created: 2021-08-22T09:21:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-23T13:25:55.000Z (over 3 years ago)
- Last Synced: 2024-04-08T04:39:32.306Z (9 months ago)
- Topics: hand-tracker, opencv, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Description
A simple hand tracking module for humans using OpenCV, Mediapipe and Python.You can include [handTrackingModule.py](https://github.com/karishmashuklaa/hand-tracker/blob/master/handTrackingModule.py) file in any of your projects and get a fully functional
*single hand* tracker ✍### Configuration Options
* static_image_mode - If set to false, the solution treats the input images as a video stream.
* max_num_hands - Maximum number of hands to detect. Default to 2.
* min_detection_confidence - Minimum confidence value from the hand detection model for the detection to be considered successful. Default to 0.5.
* min_tracking_confidence - Minimum confidence value from the landmark-tracking model for the hand landmarks to be considered tracked successfully. Default to 0.5.To change / understand the configurations, you can visit [MediaPipe - Hand landmark model](https://google.github.io/mediapipe/solutions/hands)