ocr 0.1.0

A minimalist OCR library for Rust — from scratch, no external engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod engine;
pub mod error;
pub mod font;
pub mod preprocess;
pub mod recognize;
pub mod render;
pub mod segment;
pub mod types;

pub use engine::OcrEngine;
pub use error::Error;
pub use types::{BoundingBox, OcrResult, OcrWord};