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

https://github.com/jalen0907/simple-face-detection

This project is a real-time face detection system using OpenCV. It utilizes Haar cascade classifiers to identify faces in a live webcam feed, drawing bounding boxes around detected faces. The system efficiently processes video frames and provides a simple yet effective demonstration of computer vision techniques. This project is ideal for beginners
https://github.com/jalen0907/simple-face-detection

ai computer-vision machine-learning opencv python

Last synced: about 1 year ago
JSON representation

This project is a real-time face detection system using OpenCV. It utilizes Haar cascade classifiers to identify faces in a live webcam feed, drawing bounding boxes around detected faces. The system efficiently processes video frames and provides a simple yet effective demonstration of computer vision techniques. This project is ideal for beginners

Awesome Lists containing this project

README

          

📷 Real-Time Face Detection using OpenCV
A simple real-time face detection project using OpenCV and Haar cascade classifiers. The script captures video from the webcam and detects faces using pre-trained models.

🚀 Features
✅ Uses Haar cascades for efficient face detection
✅ Captures real-time video using OpenCV
✅ Draws bounding boxes around detected faces
✅ Press 'q' to exit

📌 Installation
1️⃣ Install dependencies:

pip install opencv-python numpy
2️⃣ Download the Haar cascade classifier for face detection:

get https://github.com/opencv/opencv/raw/master/data/haarcascades/haarcascade_frontalface_default.xml
🛠️ Usage
Run the script:

python face_detection.py
⚠️ Disclaimer
This is a basic example for educational purposes. It may not work well in all lighting conditions or with different face angles.