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

https://github.com/jorgermduarte/automatic-face-targeting

Real-time face and forehead detection using OpenCV and deep learning in Python.
https://github.com/jorgermduarte/automatic-face-targeting

deep-learning face-detection forehead gui python realtime

Last synced: 4 months ago
JSON representation

Real-time face and forehead detection using OpenCV and deep learning in Python.

Awesome Lists containing this project

README

          

# Real-Time Face Detection and Forehead Pointing

## Description
This repository contains a Python application that utilizes computer vision and deep learning to detect faces in real-time video streams and highlight the forehead area. It is built using OpenCV and Tkinter for GUI interactions.

## Features
- Real-time face detection using a deep learning model.
- Forehead detection for each recognized face.
- Simple and interactive GUI.

## Installation

### Prerequisites
- Python 3.6 or later
- OpenCV
- NumPy
- Tkinter
- PIL

To get started, clone this repository using:

```bash
git clone
```

Install the required dependencies:

```bash
pip install opencv-python numpy pillow
```

## Usage
Run the application with the following command:
```bash
python face_detection.py
```

Ensure your webcam is enabled and functioning, as the application captures video feed from the default video source (typically the first webcam device).

## Usage Example