https://github.com/theolepage/face-detection
Simple C++ program to detect human faces in an image.
https://github.com/theolepage/face-detection
computer-vision cpp face-detection
Last synced: 9 months ago
JSON representation
Simple C++ program to detect human faces in an image.
- Host: GitHub
- URL: https://github.com/theolepage/face-detection
- Owner: theolepage
- Created: 2018-10-31T18:36:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T19:24:09.000Z (over 2 years ago)
- Last Synced: 2025-03-30T16:01:55.698Z (about 1 year ago)
- Topics: computer-vision, cpp, face-detection
- Language: C++
- Homepage:
- Size: 494 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# face-detection

Simple C++ program to detect human faces in an image.
Inspired by [this very interesting article](https://medium.com/@ageitgey/machine-learning-is-fun-part-4-modern-face-recognition-with-deep-learning-c3cffc121d78).
## Usage
Dependencies: `SDL2` and `SDL2_image`.
1. Clone this repository with `git clone git@github.com:theolepage/FaceDetection.git`.
2. Compile the project by running the command `make` in the project folder.
3. Execute the program with `./FaceDetection [path]`.
## To-Do
1. Improve the representation of HOGs on GUI
2. Add webcam as input
3. Improve performances and efficiency
4. Implement sliding window method
5. Create the NN and train it to recognize faces