Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 956 Bytes

File metadata and controls

30 lines (22 loc) · 956 Bytes

Face Detection Project

Although I uploaded this in 2025, this simple project was first created in October 2023 to perform live face detection using OpenCV while I was learning how to code.

Overview

The main goal of this project is to detect faces in real-time using a webcam or images, leveraging the OpenCV library and pre-trained Haar Cascade classifiers. The project includes a Python script and the necessary dependencies for face detection.

Features

  • Live face detection using your webcam
  • Face detection on static images
  • Utilizes OpenCV and Haar Cascade classifier

Getting Started

  1. Install the required dependencies:
    pip install opencv-python
  2. Run the face detection script:
    python face_detection.py

Dependencies

  • haarcascade_frontalface_default.xml (Haar Cascade classifier)
  • OpenCV (Python package)

Author

Created by Caleb in October 2023.