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!
- Host: GitHub
- URL: https://github.com/borys35/hand-gestures
- Owner: Borys35
- Created: 2025-04-11T19:56:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-22T14:30:01.000Z (about 1 year ago)
- Last Synced: 2025-04-22T15:38:32.259Z (about 1 year ago)
- Topics: computer-vision, mediapipe, opencv, python
- Language: Python
- Homepage:
- Size: 9.45 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```