visual_cortex_vision/
lib.rs1mod color;
4mod content_signature;
5mod debug;
6mod detector;
7pub mod filters;
8mod frame_diff;
9mod luma;
10mod ocr;
11pub mod patterns;
12mod preprocessor;
13mod stability_mask;
14mod template;
15
16pub use color::{Brightness, Channel, ColorDominance, ColorMatch};
17pub use content_signature::ContentSignature;
18pub use debug::{DebugSink, DebugStage, PngDump};
19pub use detector::{from_fn, Detector, DetectorError, DetectorOutput, FnDetector};
20pub use frame_diff::FrameDiff;
21pub use ocr::{OcrDetector, OcrEngine, TextSpan};
22pub use preprocessor::Preprocessor;
23pub use stability_mask::StabilityMask;
24pub use template::TemplateMatcher;