| Source Image | Skin Detection |
|---|---|
![]() |
![]() |
Note: Skin Detection with HSV color space filtering might not work for all skin tones
With poetry (Recommended):
poetry installWith venv:
python -m venv venv; source venv/bin/activate
pip install -r requirements.txt# runs finger detection on the webcam, Press z when fingers are visible in the 9 squares
python skin_and_finger_detection/video_fingertip_detection.py# displays the original webcam screen and the skin detection result screen
python skin_and_finger_detection/video_skin_detection.py# move sliders to find the optimal threshold for detecting different colors in image
python color_detection/image_hsv_threshold_picker.py -i <IMAGE_PATH>python color_detection/video_color_detection.py -v <VIDEO_PATH>-
Fingertip Detection: A Fast Method with Natural Hand https://arxiv.org/pdf/1212.0134.pdf
-
Finger Detection and Tracking using OpenCV and Python https://dev.to/amarlearning/finger-detection-and-tracking-using-opencv-and-python-586m

