1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
mod rect;
pub use rect::Rect;

mod detection;
pub use detection::{DetectionParams, Face, FaceDetector, RustFacesError, RustFacesResult};

mod ort;

mod nms;
pub use nms::Nms;

mod imaging;
pub use imaging::{ToArray3, ToRgb8};

#[cfg(test)]
pub mod testing;

mod blazeface;
pub use blazeface::BlazeFace;

mod builder;

#[cfg(feature = "viz")]
pub mod viz;

pub use builder::{FaceDetection, FaceDetectorBuilder, InferParams, Provider};

mod model_repository;