欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu14.04安装tesseract3.0.5

程序员文章站 2022-07-06 09:42:26
...

参考网址https://medium.com/@lucas63/installing-tesseract-3-04-in-ubuntu-14-04-1dae8b748a32

https://github.com/tesseract-ocr/tesseract/wiki/Compiling#linux

https://lucacerone.net/2017/install-tesseract-3-0-5-in-ubuntu-16-04/


先安装依赖库:

Ubuntu

If they are not already installed, you need the following libraries (Ubuntu 16.04/14.04):

sudo apt-get install g++ # or clang++ (presumably)
sudo apt-get install autoconf automake libtool
sudo apt-get install pkg-config
sudo apt-get install libpng-dev
sudo apt-get install libjpeg8-dev
sudo apt-get install libtiff5-dev
sudo apt-get install zlib1g-dev

if you plan to install the training tools, you also need the following libraries:

sudo apt-get install libicu-dev
sudo apt-get install libpango1.0-dev
sudo apt-get install libcairo2-dev


下载安装Leptonica

wget http://www.leptonica.com/source/leptonica-1.74.4.tar.gz


tar xvf leptonica-1.74.tar.gz
cd leptonica-1.74
./configure
make

sudo make install

sudo ldconfig


下载tesseract3.0.5

https://github.com/tesseract-ocr/tesseract/archive/3.05.00.tar.gz


解压

./autogen.sh
./configure --enable-debug
make        //LDFLAGS="-L/usr/local/lib" CFLAGS="-I/usr/local/include" make
sudo make install
//sudo make install-langs
sudo ldconfig

查看是否安装成功

 $:tesseract -v
tesseract 3.05.00
 leptonica-1.74.4
  libjpeg 8d (libjpeg-turbo 1.3.0) : libpng 1.2.50 : libtiff 4.0.3 : zlib 1.2.8

安装语言包

https://github.com/tesseract-ocr/tessdata/archive/3.04.00.zip

下载语言包,3.0.4也适用于3.0.5;

解压出来根据需要将语言包拷贝到 /usr/local/share/tessdata 下;



相关标签: tesseract