ocr 0.1.1

A pure Rust CLI OCR tool for printed text extraction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Domain Modules
//!
//! Business capability modules organized by domain rather than technical layers.
//! Each domain module provides high-level services for its specific capability.

pub mod config;
pub mod image_processing;
pub mod ioc;
pub mod language_processing;
pub mod output_formatting;
pub mod text_recognition;

pub use config::*;
pub use image_processing::*;
pub use ioc::*;
pub use language_processing::*;
pub use output_formatting::*;
pub use text_recognition::*;