2015-07-16 16:24:25 +02:00
|
|
|
tesseract
|
|
|
|
=========
|
|
|
|
|
|
|
|
![](https://badge.imagelayers.io/vimagick/tesseract:latest.svg)
|
|
|
|
|
2016-01-29 18:36:47 +02:00
|
|
|
[Tesseract][1] is an Open Source OCR engine, available under the Apache 2.0
|
2015-07-16 16:24:25 +02:00
|
|
|
license. It can be used directly, or (for programmers) using an API. It
|
|
|
|
supports a wide variety of languages.
|
|
|
|
|
|
|
|
Tesseract doesn't have a built-in GUI, but there are several available from the
|
|
|
|
3rdParty page.
|
|
|
|
|
|
|
|
Quick Start
|
|
|
|
-----------
|
|
|
|
|
|
|
|
```
|
|
|
|
$ alias tesseract='docker run --rm -v `pwd`:/work -w /work vimagick/tesseract'
|
|
|
|
$ tesseract myscan.png out
|
|
|
|
$ cat out.txt
|
|
|
|
```
|
2016-01-29 18:36:47 +02:00
|
|
|
|
|
|
|
[1]: https://github.com/tesseract-ocr/tesseract
|