https://github.com/mohitpimoli/virtual-mouse
“Virtual Mouse: A computer vision project that allows users to control their cursor using hand gestures. This project utilizes advanced image processing techniques to accurately track hand movements and translate them into cursor movements on the screen. Ideal for touch-free computing experiences.”
https://github.com/mohitpimoli/virtual-mouse
hand-detection hand-gesture-recognition hand-tracking mediapipe opencv python virtual-mouse virtual-mouse-using-hand-gesture
Last synced: 6 months ago
JSON representation
“Virtual Mouse: A computer vision project that allows users to control their cursor using hand gestures. This project utilizes advanced image processing techniques to accurately track hand movements and translate them into cursor movements on the screen. Ideal for touch-free computing experiences.”
- Host: GitHub
- URL: https://github.com/mohitpimoli/virtual-mouse
- Owner: MohitPimoli
- License: mit
- Created: 2024-03-29T03:00:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-29T05:02:11.000Z (over 1 year ago)
- Last Synced: 2025-02-05T14:18:20.846Z (8 months ago)
- Topics: hand-detection, hand-gesture-recognition, hand-tracking, mediapipe, opencv, python, virtual-mouse, virtual-mouse-using-hand-gesture
- Language: Python
- Homepage: https://devfolio.co/projects/virtual-mousenova-4d2b
- Size: 928 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Steps To Follow:
* Pre-requisites
## Python: ( >=3.8.5 )
## Anaconda [Download](https://www.anaconda.com/download)Steps:
1. Clone git repo to local system.
```bash
git clone https://github.com/MohitPimoli/Virtual-Mouse.git
```
2. Open Anaconda Shell.
3. Create Virtual environment with python version 3.8.5.
```bash
conda create --name mouse python=3.8.5
```
4. Activate venv.
```bash
conda activate mouse
```
5. Download PyAudio and PyWin32.
```bash
conda install PyAudio
```
```bash
conda install pywin32
```
6. Go to Project Folder.
```bash
cd Virtual-Mouse\src
```
7. Install requirements.
```bash
pip install -r requirements.txt
```
8. Run Nova the Virtual Assistant.
```bash
python Nova.py
```