Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.08 KB

File metadata and controls

31 lines (21 loc) · 1.08 KB

Face recognition using dlib

Credits

This code started out as as a cut and paste from the following sources:

Installation

Run

  • Get hold of some images of people you want to recognize. One file per person will do. Name the file after the person.
  • Configure faces_folder_path in source. Run with python3.

Sample

Trygve og Einar

Experiments

See folder experiments. In chronological order:

  • _raw: first attempt
  • _dual: uses both opencv and dlib face-detection
  • _faster: A relatively fast implementation using opencv for face detection (and dlib for face recognition)
  • _refactor: Last attempt to tidy up