visual-cortex-vision 0.10.0

Detectors for visual-cortex: pixel/color conditions, template matching, the OcrEngine contract, and OCR text parsers.
Documentation
//! Detectors: the `Detector` trait, built-in gates, and the `OcrEngine` trait.

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;