A computer vision-powered Python application that lets you control your computer using just your hand gestures — no mouse, no touchpad. Move your cursor, click, scroll, minimize, and close windows using natural hand signs captured via your webcam.
- 🖱️ Move Cursor - Move your open hand in front of the webcam
- 👊 Click - Make a fist gesture
- ⬆️⬇️ Scroll - Hold your index and middle fingers together
- 📉 Minimize Window - Raise your pinky finger
- 👍 Close Application - Show a thumbs-up
- 👌 Double Click - Make an OK sign
- Python
- OpenCV
- MediaPipe
- PyAutoGUI
- Pygame
1️⃣ Clone the repository:
git clone https://github.com/Pardhuu66/Gesture-Control-PC.git
cd Gesture-Control-PC2️⃣ Install dependencies:
pip install -r requirements.txt3️⃣ Run the application:
python main.py- Uses MediaPipe to detect hand landmarks in real-time via webcam.
- Maps specific gestures (fist, open hand, thumb up, etc.) to system actions using PyAutoGUI.
- Displays real-time gesture feedback and hand detection using Pygame overlay.