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
12
13
14
15
16
pub(crate) mod backend;
pub mod detection;
mod error;
mod face_engine;
pub mod recognition;

pub use error::Error;
pub use error::Result;
pub(crate) mod config;
pub(crate) mod model;
pub mod types;

pub use detection::FaceDetector;
pub use face_engine::FaceEngine;
pub use recognition::FaceRecognizer;
pub use types::{BoundingBox, DetectedFace, Face, FaceEmbedding, FaceLandmarks};