...
If you are installing on linux systems please follow these article: /wiki/spaces/WIKI/pages/1080918029 install tesseract first.
CentOS 8
Code Block |
---|
sudo dnf config-manager --add-repo https://download.opensuse.org/repositories/home:/Alexander_Pozdnyakov/CentOS_8/
sudo rpm --import https://build.opensuse.org/projects/home:Alexander_Pozdnyakov/public_key
sudo dnf install tesseract
sudo dnf install tesseract-langpack-deu |
RHEL 7
Code Block |
---|
sudo yum-config-manager --add-repo https://download.opensuse.org/repositories/home:/Alexander_Pozdnyakov/RHEL_7/
sudo yum update
sudo yum install tesseract
sudo yum install tesseract-langpack-deu |
CentOS 7
Code Block |
---|
sudo yum-config-manager --add-repo https://download.opensuse.org/repositories/home:/Alexander_Pozdnyakov/CentOS_7/
sudo rpm --import https://build.opensuse.org/projects/home:Alexander_Pozdnyakov/public_key
sudo yum update
sudo yum install tesseract
sudo yum install tesseract-langpack-deu |
Debian (als Root ausführen)
Code Block |
---|
sudo apt install tesseract-ocr
sudo apt install libtesseract-dev |
How it works
The plugin have an built in recognizer. In addition it is capable to configure remote instances. How they are working is out of scope of this article. Here only the built it OCR recognizer is explained.
...