An open API service indexing awesome lists of open source software.

https://github.com/borys35/hand-gestures

Control your music player using your own hand!
https://github.com/borys35/hand-gestures

computer-vision mediapipe opencv python

Last synced: 2 months ago
JSON representation

Control your music player using your own hand!

Awesome Lists containing this project

README

          

# Music controls using hand gestures

If you want to try it, just clone the repo, open your favourite music player and run the program!

## Prerequirements
You need python installed on your machine and install all dependencies used in main.py.

## Capturing a camera
I use DroidCam to capture my camera, so the code looks like this:
```
# capture video
url = 'http://192.168.100.62:4747/video'
cap = cv.VideoCapture(url)
```
If you have default/built-in webcam, you can use this code instead
```
# capture video
url = '' # this line can be deleted
cap = cv.VideoCapture(0)
```