visual-cortex-vision 0.6.0

Detectors for visual-cortex: pixel/color conditions, template matching, the OcrEngine contract, and OCR text parsers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Detectors: the `Detector` trait, built-in gates, and the `OcrEngine` trait.

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;