visual_cortex_vision/lib.rs
1//! Detectors: the `Detector` trait, built-in gates, and the `OcrEngine` trait.
2
3mod color;
4mod detector;
5pub mod filters;
6mod frame_diff;
7mod luma;
8mod ocr;
9pub mod patterns;
10mod template;
11
12pub use color::{Brightness, Channel, ColorDominance, ColorMatch};
13pub use detector::{from_fn, Detector, DetectorError, DetectorOutput, FnDetector};
14pub use frame_diff::FrameDiff;
15pub use ocr::{OcrDetector, OcrEngine, TextSpan};
16pub use template::TemplateMatcher;