OCR:修订间差异

来自WHY42
Riguz留言 | 贡献
标签2017版源代码编辑
Riguz留言 | 贡献
标签2017版源代码编辑
第5行: 第5行:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
git clone https://github.com/Microsoft/vcpkg.git
# https://stackoverflow.com/questions/40067547/glibtool-on-macbook
cd vcpkg
brew install libtool automake
./bootstrap-vcpkg.sh # "./bootstrap-vcpkg.bat" for powershell
 
./vcpkg integrate install
git clone https://github.com/DanBloomberg/leptonica.git
./vcpkg install leptonica
cd leptonica
./autogen.sh
./configure
make
</syntaxhighlight>
</syntaxhighlight>



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

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