1 2 3 4 5 6 7 8 9 10 11
//! Face detection structs. mod base; mod cnn; mod hog; mod location; pub use self::base::FaceDetectorTrait; pub use self::cnn::FaceDetectorCnn; pub use self::hog::FaceDetector; pub use self::location::FaceLocations;