OCR:修订间差异
标签:2017版源代码编辑 |
标签:2017版源代码编辑 |
||
第1行: | 第1行: | ||
= Tesseract OCR = | = Tesseract OCR = | ||
== | == Build tesseract == | ||
Install leptonica<ref>https://github.com/DanBloomberg/leptonica</ref>: | Install leptonica<ref>https://github.com/DanBloomberg/leptonica</ref>: | ||
第26行: | 第26行: | ||
sudo make install | sudo make install | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Trained data == | |||
[[Category:Deep Learning]] | [[Category:Deep Learning]] |
2024年12月2日 (一) 02:56的版本
Tesseract OCR
Build tesseract
Install leptonica[1]:
# https://stackoverflow.com/questions/40067547/glibtool-on-macbook
brew install libtool automake
git clone https://github.com/DanBloomberg/leptonica.git
cd leptonica
./autogen.sh
./configure
make
sudo make install
Install tesseract-ocr:
git clone https://github.com/tesseract-ocr/tesseract.git
cd tesseract
./autogen.sh
./configure
make
sudo make install