Releases: adaptech-cz/Tesseract4Android
Releases · adaptech-cz/Tesseract4Android
4.0.0
Library is now available in a new OpenMP variant that provides better performance on multi-core processors.
NOTE: Due to issue with JitPack you must compile the library yourself if you want to use the OpenMP variant.
Changes:
- Update Tesseract to 5.0.0
- this brings greatly increased performance (NEON SIMD optimizations for tessdata and tessdata_fast; FAST FLOAT optimizations for tessdata_best)
- exposes new thresholding methods from Leptonica with configurable parameters (Sauvola, Otsu)
- pdf.ttf file is not needed anymore
- and more (see official Tesseract changelog)
- Update Leptonica to 1.82.0
3.0.0
Library is now available in a new OpenMP variant that provides better performance on multi-core processors.
NOTE: Due to issue with JitPack you must compile the library yourself if you want to use the OpenMP variant.
BC breaks:
- Library doesn't specify
WRITE_EXTERNAL_STORAGE
andREAD_EXTERNAL_STORAGE
permissions in it's AndroidManifest anymore. - Reworked destroying TessBaseAPI instance (see #34). Instead of
TessBaseAPI#end()
now useTessBaseAPI#recycle()
.
Other changes:
- Add parameter check in ReadFile (by fab1ano)
- Expose deskew function (fixes #28)
- Allow configure Tesseract variables during initialization
- Update Leptonica to 1.81.1
- Expose Tesseract's getVariable() method