dlib-face-recognition

Inspired by a similar python library, dlib-face-recognition is a Rust library that binds to certain specific features of the dlib C++ library.

This repository will dedicate itself to improve the library's content.

These include:

Original Working

The original working is here (unmaintaned; since Aug 2021).

Building

Supported Platforms

For better maintaining, please let us know whether the other platforms support it. Besides, you may claim us whether the specific platform should support it through Issues .

Dependencies

For Windows, vcpkg may help building both blas and lapack . For other platforms such as Linux, package managers should support installing them.

Building Native library

dlib-face-recognition requires dlib to be installed.

The C++ library dlib will be automatically installed via dlib-face-recognition-sys .

For building, this library uses cmake , so please make sure for getting cmake .

Building Rust package

dlib-face-recognition includes a embed-all feature flag that can be used with cargo build --features embed-all .

This will automatically download the face predictor, cnn face detector and face encoding neural network models (the fhog face detector is included in dlib and does not need to be downloaded). Alternatively, these models can be downloaded manually:

If this feature flag is enabled, the matching structs will have Default::default implementations provided that allows you to load them without having to worry about file locations.

```bash

Install cmake on a CUDA-enabled machine ...

cargo build --features embed-all ```

Testing

There is one included test to recognize, and draw a face's points:

There is two files to benchmark the code, and test some functions:

Examples

bash mkdir outputs cargo run --features embed-all --example draw assets/obama_1.jpg outputs/obama_1.jpg