insight_face_rs/lib.rs
1pub mod detection;
2mod error;
3mod face_engine;
4pub(crate) mod init;
5pub mod recognition;
6
7pub use error::Error;
8pub use error::Result;
9pub(crate) mod config;
10pub(crate) mod model;
11pub mod types;
12
13pub use detection::FaceDetector;
14pub use face_engine::FaceEngine;
15pub use ort;
16pub use recognition::FaceRecognizer;
17pub use types::{BoundingBox, DetectedFace, Face, FaceEmbedding, FaceLandmarks};
18
19#[cfg(feature = "pgvector")]
20pub use pgvector::Vector as PgVector;