KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Hand-Cursor-Controller
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
netpaca-optics
:
network interface optics health monitoring
PyNoddyInversion
:
Repository to accompany PyNoddy that includes inversion code
mse-tsm-mobcom
:
MSE TSM MobCom
sagemaker-pytorch-boilerplate
:
No description available.
BadgerFilm
:
EPMA thin film analysis and more.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Hand-Cursor-Controller
?
Download (.md)
# Gesture Mouse Automation **Version 1.0.0** ### LinkedIn Post Link: [Video Link](https://www.linkedin.com/feed/update/urn:li:activity:6693546821140189184/) This program allows you to control your cursor with your hand, with different types of gestures:<br> <br> `0 Finger` : To LeftClick at a specific position<br> `1 Finger` : To control the postition of the cursor<br> `2 Fingers` : You can assign it to your need<br> `3 Fingers` : To Scroll Down <br> `4 Fingers` : To Scroll Up<br> `5 Fingers` : To Start or Stop the Program<br> The background needs to be clear and blank to detect the hand correctly. To make sure of that enable set the Debug variable to True. This program is just an idea of what the future technology will bring with it. It is still a concept with lot of conditions needed to work properly. Its accuracy and movement is not the greatest but it will provide you enough satisfaction to experience what the future will bring with it. ## How it works? The program first tries to detect a hand by converting the video image to black and white and then subtracts the stable background for better detection of hand. <br><br> Then to detect the number of fingers, different functions like convex hull and countours that gives us the number of valleys that will be formed in the hand image, that is the gaps between the fingers. For finger 1 and fist the area and arearatio covered by the hand tells us which is what.<br><br> After that for movement of the mouse the brightest pixel in the image screen is taken as the reference coordinate and then the cursor is moved to that position using the `PyAutoGUI` Automation library. ## Some Tips 1. Keep the background clear when the mask image is created, because the cursor is mapped and moved to the top brightest pixel in the mask.<br> 2. To start and stop the program show the five fingers.<br> 3. To terminate the program press `Ctrl+C` in the console.<br>