insight-face-rs 1.6.1

Face detection and recognition library using ONNX Runtime (Rust)
Documentation
pub mod detection;
mod error;
mod face_engine;
pub(crate) mod init;
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 ort;
pub use recognition::FaceRecognizer;
pub use types::{BoundingBox, DetectedFace, Face, FaceEmbedding, FaceLandmarks};

#[cfg(feature = "pgvector")]
pub use pgvector::Vector as PgVector;