Skip to content
/ hsfc Public

Hand Segmentation and Finger Counting with Convex Hull

License

Notifications You must be signed in to change notification settings

ak811/hsfc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Hand Segmentation and Finger Counting with Convex Hull


Overview

The objective of this project is to segment and count the fingers present in an image of a hand with high accuracy. To achieve this, image processing techniques such as contour detection and Gaussian blur, along with Euclidean distance, will be employed to separate the hand from the background. The Convex Hull method will then be utilized to pinpoint the fingers within the segmented hand image. This method involves finding the smallest convex shape that encompasses a set of points and will be used by identifying the points on the hand that form the convex shape.


Getting Started

1. Fork and clone the repository:

* git clone git://github.com/ak811/hsfc.git

2. Import the project via any Python IDEs:

$ pip install scikit-learn
$ pip install opencv-python
$ pip install numpy

3. You're ready to go!

* The documentation will be provided soon.