Skip to main content

visual_cortex_vision/
lib.rs

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