首页 > 其他 > 详细

tesseract-ocr4.0 安装部署及训练验证码识别

时间:2017-02-19 21:42:08      阅读:6629      评论:0      收藏:0      [点我收藏+]

1.  下载最新版本的leptonica,  leptonica-1.74.1.tar.gz  

2.  编译安装

tar -zxvf leptonica-1.74.1.tar.gz
cd leptonica-1.74.1
./configure
make
sudo make install

3. 安装相关依赖库

sudo apt-get install autoconf automake libtool
sudo apt-get install autoconf-archive
sudo apt-get install pkg-config
sudo apt-get install libpng12-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

4. 下载编译安装最新版本 tesseract-4.0, 

git clone --depth 1 https://github.com/tesseract-ocr/tesseract.git
cd tesseract
./autogen.sh
./configure --enable-debug
LDFLAGS="-L/usr/local/lib" CFLAGS="-I/usr/local/include" make
sudo make install
sudo ldconfig

5. 使用

# 查看版本号
tesseract -v

# 查看tesseract 支持语言
tesseract --list-langs

# 识别 test.jpg 图片文字
tesseract test.jpg out -l eng
more out.txt

 

tesseract-ocr4.0 安装部署及训练验证码识别

原文:http://www.cnblogs.com/jkmiao/p/6417167.html

(2)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!