insight-face-rs 1.4.0

Face detection and recognition library using ONNX Runtime (Rust)
1
2
3
4
5
6
7
8
9
10
11
mod bounding_box;
mod detected_face;
mod face;
mod face_embedding;
mod face_landmarks;

pub use bounding_box::BoundingBox;
pub use detected_face::DetectedFace;
pub use face::Face;
pub use face_embedding::FaceEmbedding;
pub use face_landmarks::FaceLandmarks;