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
//! High-level API for OCR

pub mod config;
pub mod error;
pub mod image;
pub mod ocr;
pub mod text;

pub use config::*;
pub use error::*;
pub use image::*;
pub use ocr::*;
pub use text::*;

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