samyhad / FaceDetectionWithPython

Este é o repositório de uma projeto de detecção facial com o Python. Ele foi baseado no projeto apresentado no curso de Traditional Face Detection With Python ofertado pela Real Python (https://realpython.com/courses/traditional-face-detection-python/)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FaceDetectionWithPython

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/)

Usage

This program can recognize human face shape in an image, for example:

Face detection example

Prerequirements

You should be Anaconda installed in your computer

How to setup your enviropment?

  1. Clone the repo
  2. $ git clone [https://github.com/samyhad/FaceDetectionWithPython.git](https://github.com/samyhad/FaceDetectionWithPython.git)
    
  3. Run this command in your anaconda prompt
  4. $ conda create --name face-detection python=2.7
    
  5. Activate your enviropment
  6. $ conda activate face-detection2
    
  7. Install scikit-learn with conda
  8. $ conda install scikit-learn
    
  9. Install scikit-image
  10. $ conda install -c conda-forge scikit-image
    
  11. Install menpo and opencv
  12. $ pip2 install opencv-python==4.2.0.32
    
    $ conda install -c menpo opencv3
    

About

Este é o repositório de uma projeto de detecção facial com o Python. Ele foi baseado no projeto apresentado no curso de Traditional Face Detection With Python ofertado pela Real Python (https://realpython.com/courses/traditional-face-detection-python/)


Languages

Language:Python 100.0%