Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nitin-diwakar/finger-counter-using-opencv
https://github.com/nitin-diwakar/finger-counter-using-opencv
computer-vision mediapipe mediapipe-hands opencv opencv-python project pycharm-ide python3
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nitin-diwakar/finger-counter-using-opencv
- Owner: Nitin-Diwakar
- License: mit
- Created: 2022-03-29T04:36:04.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-03-29T05:24:32.000Z (over 2 years ago)
- Last Synced: 2024-10-16T22:24:24.846Z (20 days ago)
- Topics: computer-vision, mediapipe, mediapipe-hands, opencv, opencv-python, project, pycharm-ide, python3
- Language: Python
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `Finger Counter usingOpenCV `
This project is based on hand motion detection using mediapipe library which is used to detect motion and body gestures. To implement this, I first learn hand tracking using openCv and mediapipe the learn how to use hand landmarks to count of the fingers.
All of this is happening in real-time and requires no configuration or GPU.
# Libraries used adn prerequisite# How to install
Open Command Prompt, type
```python
pip install opencv-python
```
```python
pip install mediapipe
```# Imported Module
OpenCv(for image processing and performing computer vision tasks)
```python
import cv2
```
time(for fps show)
```python
import time
```
os(for loading directories)
```python
import os
```
mediapipe(for hand detection)
```python
import mediapipe as mp
```Reference from Murtaza's Workshop