https://github.com/justfairdev/face-blurring-cv2
https://github.com/justfairdev/face-blurring-cv2
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/justfairdev/face-blurring-cv2
- Owner: justfairdev
- Created: 2024-04-30T13:01:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T13:02:12.000Z (about 2 years ago)
- Last Synced: 2025-03-31T19:25:18.304Z (about 1 year ago)
- Language: Python
- Size: 9.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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