mod color;
mod detector;
mod frame_diff;
mod luma;
mod ocr;
pub mod patterns;
mod template;
pub use color::{Brightness, Channel, ColorDominance, ColorMatch};
pub use detector::{from_fn, Detector, DetectorError, DetectorOutput, FnDetector};
pub use frame_diff::FrameDiff;
pub use ocr::{OcrDetector, OcrEngine, TextSpan};
pub use template::TemplateMatcher;