tesseract-ocr-static 0.1.2

Ergonomic, self-contained, statically-built Rust interface for Tesseract OCR.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

mod common;
mod error;
mod image;
mod layout;
mod ocr;
mod types;
mod vars;
mod version;

pub use self::common::*;
pub use self::error::*;
pub use self::image::*;
pub use self::layout::*;
pub use self::ocr::*;
pub use self::types::*;
pub use self::version::*;