dlib-face-recognition 0.3.2

Unofficial Rust wrappers to the C++ library dlib, face recognition tools
1
2
3
4
5
6
7
8
9
//! Structs for predicting face landmark locations from images and face rectangles.

mod base;
mod landmarks;
mod model;

pub use self::base::LandmarkPredictorTrait;
pub use self::landmarks::FaceLandmarks;
pub use self::model::LandmarkPredictor;