rusty-tesseract icon indicating copy to clipboard operation
rusty-tesseract copied to clipboard

A Rust wrapper for Google Tesseract

Results 4 rusty-tesseract issues
Sort by recently updated
recently updated
newest added

It would be nice to bundle tesseract like https://github.com/ledunguit/tesseract-native-rs

I'm using rusty-tesseract with a rust lambda function and I'm getting some strange results. When I run everything locally it works great, super easy to use! But as soon as...

Hi! rusty-tesseract is amzaing work! It works pretty well on my both Linux and MacOS machine! I have used it on my personal project https://github.com/strrl/dejavu, and I found that I...

This is my code ```rust let img = Image::from_path("C:/Users/{my user}/Downloads/asd.png").unwrap(); let mut my_args = Args::default(); let output = rusty_tesseract::image_to_string(&img, &my_args).unwrap(); println!("The String output is: {:?}", output); ``` and this is...