rust_faces/
lib.rs

1mod rect;
2pub use rect::Rect;
3
4mod detection;
5pub use detection::{Face, FaceDetector, RustFacesError, RustFacesResult};
6
7mod ort;
8
9mod nms;
10pub use nms::Nms;
11
12mod imaging;
13pub use imaging::{ToArray3, ToRgb8};
14
15#[cfg(test)]
16pub mod testing;
17
18pub mod priorboxes;
19
20mod blazeface;
21pub use blazeface::{BlazeFace, BlazeFaceParams};
22
23mod mtcnn;
24pub use mtcnn::{MtCnn, MtCnnParams};
25
26mod builder;
27
28#[cfg(feature = "viz")]
29pub mod viz;
30
31pub use builder::{FaceDetection, FaceDetectorBuilder, InferParams, Provider};
32
33mod model_repository;