Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 1.53 KB

README.md

File metadata and controls

55 lines (33 loc) · 1.53 KB

openCV_termproject

teamname : Commit soon

Face Filter Application

This project is a simple face filter application that detects faces from a webcam feed and applies various stickers to them.

Overview

The application leverages OpenCV for face detection and image manipulation. Users can cycle through different face filters in real-time, providing an entertaining and interactive experience.

Example

Example Example Example

Usage

  1. Environment Setup

    • Install Python 3.x, or a newer version.

    • Install required libraries by running the following command:

      pip install opencv-python numpy
  2. Add Face Filter Images

    • Add image files for face filters to the project folder.
  3. Run

    • Start the face filter application by executing the following command in the terminal:

      python face_filter_app.py
  4. Key Events

    • Press '1' to change to different face filters.
    • Press 'q' to exit the application.

Notes

  • Face filter images should be in PNG format with support for a transparent background.
  • Face detection utilizes Haarcascades, and you can experiment with different classifiers for improved accuracy.

References