mod color;
mod debug;
mod detector;
pub mod filters;
mod frame_diff;
mod luma;
mod ocr;
pub mod patterns;
mod preprocessor;
mod stability_mask;
mod template;
pub use color::{Brightness, Channel, ColorDominance, ColorMatch};
pub use debug::{DebugSink, DebugStage, PngDump};
pub use detector::{from_fn, Detector, DetectorError, DetectorOutput, FnDetector};
pub use frame_diff::FrameDiff;
pub use ocr::{OcrDetector, OcrEngine, TextSpan};
pub use preprocessor::Preprocessor;
pub use stability_mask::StabilityMask;
pub use template::TemplateMatcher;