This is the repository for a face detection project with Python. It was based on the project presented in the Traditional Face Detection course with Python offered by Real Python (https://realpython.com/courses/traditional-face-detection-python/)
This program can recognize human face shape in an image, for example:
You should be Anaconda installed in your computer
- Clone the repo
- Run this command in your anaconda prompt
- Activate your enviropment
- Install scikit-learn with conda
- Install scikit-image
- Install menpo and opencv
$ git clone [https://github.com/samyhad/FaceDetectionWithPython.git](https://github.com/samyhad/FaceDetectionWithPython.git)
$ conda create --name face-detection python=2.7
$ conda activate face-detection2
$ conda install scikit-learn
$ conda install -c conda-forge scikit-image
$ pip2 install opencv-python==4.2.0.32
$ conda install -c menpo opencv3