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

https://github.com/ajay-dhangar/face-detector-app

This is a simple face detector app that uses python and OpenCV to detect faces in an image.
https://github.com/ajay-dhangar/face-detector-app

face face-detection face-detection-app opencv opencv-python python

Last synced: 7 months ago
JSON representation

This is a simple face detector app that uses python and OpenCV to detect faces in an image.

Awesome Lists containing this project

README

          

# Face Detector App

This is a simple face detector app that uses python and OpenCV to detect faces in an image.

For Example:

![preview](./images/image.png)

![image](https://github.com/Ajay-Dhangar/face-detector-app/assets/99037494/57d0b466-f0bf-41b2-9f2a-cbf89fa027dd)

***If you like this repository, feel free to star it.***

## Features

- Detect faces in an image

## Let's Get Started

### Step 1: Fork this Repository

You can get your own fork/copy of [face-detector-app](/) by using the Fork button.

### Step 2: Clone your fork

You need to clone (download a copy of) this repository to your local machine using:

```bash
git clone https://github.com/Your_Username/face-detector-app.git
```

Where `Your_Username` is your GitHub username. Here you're copying the contents of the `face-detector-app` repository on GitHub to your computer.

### Step 3: Navigate to the repository

```bash
cd face-detector-app
```

### Step 4: install the required libraries

```bash
pip install -r requirements.txt
```

or you can install the required libraries manually using:

```bash
pip install opencv-python
```

### Step 5: Run the app

```bash
python main.py
```

![image](https://github.com/Ajay-Dhangar/face-detector-app/assets/99037494/57d0b466-f0bf-41b2-9f2a-cbf89fa027dd)

Congratulations! You have successfully run the face detector app.

and you can use your own image by replacing the image in the `images` folder.

## Contributing

### Step 1: Create a new branch

```bash
git checkout -b YourBranchName
```

### Step 2: Make changes

Make the changes that you want to make.

### Step 3: Commit all the changes

```bash
git add .
git commit -m "Your commit message"
```

### Step 4: Push the changes

```bash
git push origin YourBranchName
```

### Step 5: Create a Pull Request

Go to your repository on GitHub and create a pull request.

Congratulations! You have successfully created a pull request.

## Author

- [Ajay Dhangar](https://github.com/ajay-dhangar)