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

https://github.com/justfairdev/face-blurring-cv2


https://github.com/justfairdev/face-blurring-cv2

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Face Blurring

Face Blurring is a simple application for blurring faces in video footage using OpenCV and the Tkinter GUI library.

## Description

This application provides the user with the ability to start recording video from a webcam and process it by blurring detected faces. The user can select the processing method (Simple or Pixelated), set the number of blocks (for the Pixelated method) and the accuracy threshold for identifying faces.

## Requirements

To run the application you will need the following libraries:

- OpenCV
- Tkinter
- imutils
- numpy

You can install them using pip:

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