Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

# Prefered IDLE

# 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