behzadshomali / Image-Describe-Pipe

This app outputs the name, coordinations, sentiment of each extracted face, and besides a brief description of the scene's context for each input image.
2 stars 0 forks source link

Do research on the implementation #2

Closed behroozomidvar closed 3 years ago

behroozomidvar commented 3 years ago
behzadshomali commented 3 years ago

@behroozomidvar I saw 2 Python-libraries (RetinaFace & DeepFace) in LinkedIn by chance, which are beneficial in the following aspects:

  1. Literally lightweight
  2. Literally easy to use
  3. Open-source
  4. Face detection and also face recognition
  5. Handle multi-face detection
  6. Implementing various state-of-the-art models (and also their ensemble), including:
    • VGG-Face
    • Google FaceNet
    • OpenFace
    • Facebook DeepFace
    • DeepID
    • Dlib
  7. Extract various features, including:
    • Age
    • Face, eyes, mouth and nose landmarks
    • Emotion
    • Race

Here is a link explaining a bit how to work with these two libraries.