gpt4 book ai didi

c++ - 如何将 Tesseract OCR 库集成到 C++ 程序中

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:24:54 27 4
gpt4 key购买 nike

我正在尝试使用 Tesseract OCR Library为了创建一个程序来读取电梯楼层号码的图片。我还没有找到任何关于如何将 Tesseract 库包含到 C++ 文件中的示例。像这样的东西:

#include "tesseract.h"

我在 Ubuntu 10.10 上使用 Tesseract v 3.00。

最佳答案

PlatformStatus页面对如何安装它有一些评论。它具有也需要安装的依赖项 (leptonica)。

Another solution也从上面的讨论中链接了其他 linux 发行版的类似细节。

当涉及到与您的程序的链接时,this post有一些细节

is also a C wrapper to the underlying API calls ;查看包含的文件应该会告诉您要包​​含的内容。 Other wrappers在这里可用。

base API class are here... 的文档

来自 Platform Status 的评论安装页面。

tim.lawr...@gmail.com 的评论,2011 年 11 月 23 日我使用这些命令在 Ubuntu 11.10 64Bit 上成功安装了 tesseract-ocr:

sudo apt-get install libleptonica-dev autoconf automake libtool libpng12-dev libjpeg62- dev libtiff4-dev zlib1g-dev subversion g++
cd
svn checkout http://tesseract-ocr.googlecode.com/svn/trunk/ tesseract-ocr
cd tesseract-ocr
./autogen.sh
./configure
make
sudo make install
sudo ldconfig
cd /usr/local/share/tessdata/
sudo wget http://tesseract-ocr.googlecode.com/files/eng.traineddata.gz
sudo gunzip eng.traineddata.gz
cd ~/tesseract-ocr/
tesseract phototest.tif phototest
cat phototest.txt

关于c++ - 如何将 Tesseract OCR 库集成到 C++ 程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9152803/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com