OCR:修订间差异

来自WHY42
Riguz留言 | 贡献
标签2017版源代码编辑
Riguz留言 | 贡献
标签2017版源代码编辑
第13行: 第13行:
./configure  
./configure  
make  
make  
sudo make install
</syntaxhighlight>
</syntaxhighlight>


Install tesseract-ocr:


<syntaxhighlight lang="bash">
git clone https://github.com/tesseract-ocr/tesseract.git
cd tesseract
./autogen.sh
./configure
make
sudo make install
</syntaxhighlight>






[[Category:Deep Learning]]
[[Category:Deep Learning]]

2024年12月2日 (一) 02:35的版本

Tesseract OCR

Installing

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