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:
The original working is here (unmaintaned; since Aug 2021).
Apple M1
)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
.
For Windows, vcpkg
may help building both blas
and lapack
.
For other platforms such as Linux, package managers should support installing them.
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
.
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
cargo build --features embed-all ```
There is one included test to recognize, and draw a face's points:
cargo run --features embed-all --example draw
-> To run the example.There is two files to benchmark the code, and test some functions:
cargo test --features embed-all --test benchmarks
-> To run the benchmarks.cargo test --features embed-all --test utilities_tests
-> To run the utilities tester.bash
mkdir outputs
cargo run --features embed-all --example draw assets/obama_1.jpg outputs/obama_1.jpg