Skip to content

Nitin-Diwakar/Finger-Counter-using-OpenCV

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

pip install opencv-python
pip install mediapipe

Imported Module

OpenCv(for image processing and performing computer vision tasks)

import cv2

time(for fps show)

import time

os(for loading directories)

import os

mediapipe(for hand detection)

import mediapipe as mp
Reference from Murtaza's Workshop