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

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.”

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
```