/Face_detection

Face detection using MTCNN.

Primary LanguagePythonMIT LicenseMIT

Face detection

Face detection using Multi-task Cascaded Convolutional Networks (MTCNN)

Key takeaways

  • Get a better understanding on how CNN works and the maths behind it.
  • Use some of the things I learned in Python through my readings.

MTCNN architecture // Source

MTCNN Architecture

How to run ?

You can either choose to perform face detection on a live camera feed (1) or on a image or video file (2).

Case (1):

python face_detection.py

Case (2):

python face_detection.py path_of_your_file

Output example:

Scientists_20th_century_processed

Main sources