Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 826 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 826 Bytes

DLib Android Face Landmark Detection

it's good to mention that this project is not a greatly optimized Implementation of face landmark detection, although it was my bachelor project. It’s a pretty naive and straightforward one. :)

$ git clone --recursive https://github.com/mhyrzt/Dlib-Android-Face-Landmark.git

Summary

It utilizes the following libraries for making a face landmark detection system:

  • dlib: This library was used natively with c++ for extracting face landmarks.

  • CamerView: for capturing images from both mobile cameras (front & back) and processing frames in real-time.

  • OpenCv: OpenCv was used for due to the slow speed of dlib::frontal_face_detector() .

sample