ocr 0.1.2

A pure Rust CLI OCR tool for printed text extraction
Documentation
//! Image processing and preprocessing for OCR

pub mod dewarp;
pub mod enhancement;
pub mod font_analysis;
pub mod pipeline;
pub mod processor;
pub mod quality;
pub mod super_resolution;
pub mod thresholder;

pub use dewarp::*;
pub use enhancement::*;
pub use font_analysis::*;
pub use pipeline::*;
pub use processor::*;
pub use quality::*;
pub use super_resolution::*;
pub use thresholder::*;

/// Re-export commonly used types
pub use crate::utils::{OcrError, Result};