This project implements a real-time hand tracking system using OpenCV and MediaPipe. It detects hands in a video feed, extracts hand landmarks, and displays tracking information, including FPS.
Screen.Recording.2025-03-31.141700.mp4
✅ Real-time hand detection & tracking
✅ Extracts hand landmark positions (x, y)
✅ Draws hand landmarks & connections
✅ Displays FPS for performance monitoring
✅ Robust error handling for camera detection
Make sure you have Python installed, then install the required dependencies:
pip install opencv-python mediapipe numpyRun the following command to start the hand tracking system:
python3 HandTrackingModel.pyPress q to exit the program.
/hand-tracking-project
│── HandTrachingModel.py # Main hand tracking script
│── README.md # Project documentation
import cv2
import mediapipe as mp
import time
import numpy as np👨💻 Developed by [Shreeya Srivastava]