Metadata-Version: 2.4
Name: PyFaceCrop
Version: 0.0.16
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: opencv-python
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist

## PyFaceCrop
A PyFaceCrop library has been developed to streamline the process of cropping faces from videos while disregarding irrelevant frames. This library offers a convenient solution for extracting facial features from video data efficiently. By leveraging advanced computer vision techniques, it identifies and isolates faces within the video frames, providing a cropped output focused solely on facial content. This tool significantly simplifies the task of processing video data for applications such as facial recognition, emotion detection, and content analysis. With its user-friendly interface and robust functionality, the Python library for face cropping enhances productivity and accuracy in various domains reliant on video analysis.

## Installation steps

```bash
pip install PyFaceCrop==0.0.16
``` 

## Code implementation
```python
from PyFaceCrop import FaceCrop

capture = FaceCrop.FaceCrop(
    root_folder="../Samples/test",
    destination_folder="identified_faces",
    interval_seconds=0.5,
    padding=50) 

capture.generate()

```
![screenshot](https://raw.githubusercontent.com/udayatom/PyFaceCrop/main/screenshots/Screenshot_Input.png)

generate() croping the faces from the present frame, if the face is above to recognize.

## Points to remember

PyFaceCrop generated crop frame faces into destination folder along with the respective folder with the name of the input the video file. So better to avoid multiple faces in the same video file to get a better dataset.

![screenshot](https://raw.githubusercontent.com/udayatom/PyFaceCrop/main/screenshots/Screenshot_Sajja.png)   
![screenshot](https://raw.githubusercontent.com/udayatom/PyFaceCrop/main/screenshots/Screenshot_Yogesh.png) 
![screenshot](https://raw.githubusercontent.com/udayatom/PyFaceCrop/main/screenshots/Screenshot_User23.png) 


