leptess icon indicating copy to clipboard operation
leptess copied to clipboard

Productive and safe Rust binding for leptonica and tesseract

Results 12 leptess issues
Sort by recently updated
recently updated
newest added

I'm having an issue including leptess (also [tesseract](https://github.com/antimatter15/tesseract-rs)) into a project. As soon as i include anything i get a linker error complaining about not finding the leptonica, tesseract libraries:...

``` sudo pacman -S leptonica tesseract clang sudo pacman -S tesseract-data-eng ``` Tried this in archlinux I did a cargo run and cargo run ``` Finished dev [unoptimized + debuginfo]...

Hi, this is both question and request for more documentation: How do I actually use leptonica to preprocess the image? In none of the examples, and in none of the...

It needed support to be able to get the mut pointer from leptonica-plumbing https://github.com/ccouzens/leptonica-plumbing/commit/4a721e7eb107e0af634d4f3d1218a441f2ad729a And for leptonica-plumbing pix to self reference https://github.com/ccouzens/leptonica-plumbing/commit/545708cf8fc3da070852bd4a1f008324fd1a562b It uses this so that methods can take...

i'm win10 os **Cargo.toml** ```toml leptess="*" ``` occur problem ```text warning: couldn't execute `llvm-config --prefix` (error: 系统找不到指定的文件。 (os error 2)) warning: set the LLVM_CONFIG_PATH environment variable to a valid `llvm-config`...

Hi there! I'm trying to get the preprocessed image from Tesseract by setting TesseditWriteImages to true like so; ```` tessapi .set_variable(Variable::TesseditWriteImages, "1") .unwrap(); ```` I believe this is correct. Now...

Hello, first of all thanks for your efforts for these very nicely done rust bindings :) I'm trying to use this to read specific regions on screen and output the...

Hello, Thank you for this work! I have a curious behavior, when I try to retrieve the text from the image bellow in command line: ``` time tesseract image.jpg output...

Hey. Most OCR work I've seen so far uses (b/w, CCITT compressed) multi-page documents. I'd like to make these work with leptess, but it seems (unless I'm missing something?) that...