Gesture-painting

This project enables interactive finger painting on a canvas using real-time hand gestures detected by a webcam. Users can draw lines in different colors and clear the canvas as needed.

Features ⚫️ Real-time Hand Gesture Detection: Utilizes Mediapipe to detect hand landmarks. ⚫️ Interactive Drawing: Draw on the canvas by moving your finger in front of the webcam. ⚫️ Color Selection: Choose from multiple colors (white, green, red, black). ⚫️ Clear Canvas: Clear the canvas using a specific gesture.

▸ Create and activate a virtual environment (optional but recommended) python3 -m venv venv source venv/bin/activate # On Windows use venv\Scripts\activate

▸ Install the required modules pip install opencv pip install mediapipe pip install numpy