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.
- Host: GitHub
- URL: https://github.com/ajay-dhangar/face-detector-app
- Owner: ajay-dhangar
- Created: 2024-04-20T17:22:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-20T17:36:34.000Z (over 1 year ago)
- Last Synced: 2025-03-28T05:41:41.800Z (7 months ago)
- Topics: face, face-detection, face-detection-app, opencv, opencv-python, python
- Language: Python
- Homepage:
- Size: 658 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:


***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
```
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)