当前位置: 首页 > 知识库问答 >
问题:

使用Tesseract读取正确的OCR数据(精度较低)

包翔
2023-03-14

嗨,我必须开发一个应用程序来读取OCR数据。

谷歌后,我发现我可以实现它使用魔方。

我从https://github.com/rmtheis/tess-two获得了Tesseract源代码

如果有人做得对的话请帮帮我...

提前多谢了....

共有1个答案

廖永长
2023-03-14

一定要检查abbyy OCR比Tesseract更准确

ABBYY offers its compact OCR Engine for Android
The latest Android smart phones have
    * good auto focus cameras and
    * more than 3 megapixel
    * so they are perfectly equipped to take sharp pictures of documents that contain textual information.
Implementing OCR on Android based applications can turn the phone in a information/text capture device. The data can be
    * processed directly on the phone, for example add a new contact to the address book
    * sent to a sever to get more information
    * sent to a text to speech engine
    * sent to a translation service

New in V4 R5: Java Native Interface Wrapper (JNIWrapper) is included!
New in V4 R7: Barcode Recognition is included!

定价详细信息http://ocrsdk.com/plans-and-price/

更多信息-->http://www.abby-developers.eu/en:mobile-imaging-sdk:start

 类似资料:
  • Tesseract OCR 该软件包包含一个OCR引擎 -  libtesseract和一个命令行程序 -  tesseract。 Tesseract 4增加了一个基于OCR引擎的新神经网络(LSTM),该引擎专注于线路识别,但仍然支持Tesseract 3的传统Tesseract OCR引擎,该引擎通过识别字符模式来工作。通过使用Legacy OCR Engine模式(--oem 0)启用与Te

  • Tesseract OCR iOS 是个 iOS5+ 框架,支持 armv7s 和 arm64 编译。 Tesseract 可能是最精确的开源 OCR 引擎,结合 Leptonica 图像处理库可以查看大量的图像格式,支持超过 60 种语言的文本转换。

  • 我正在学习这个网站上提到的教程: http://gaut.am/making-an-ocr-android-app-using-tesseract/ 并将其链接到我的项目https://github.com/gautamgupta/simple-android-ocr 该应用程序编译和运行良好。但点击图像后,当我点击保存时,它会崩溃。 以下是源主活动: 我知道错误在下面的结尾: 知道它为什么会坠毁

  • 我为iOS写了一个数字OCR。我有一个测试图像png与两位数5和4。我找到轮廓了。我如何在Tesseract转乘等高线? 初始化tesseract: 用于检测轮廓的函数: GitHub项目链接:https://github.com/maxpatsy/iorc

  • 当我尝试导入带有火花的本地CSV时,默认情况下每个列都作为字符串读取。但是,我的列只包括整数和时间戳类型。更具体地说,CSV如下所示: 我已经找到了这个问题中应该有效的代码,但当我执行它时,所有条目都返回为NULL。 我使用以下内容来创建自定义架构: 然后使用以下命令读取CSV: 返回: 我是否错过了关键的一步?我怀疑Date列是问题的根源。注意:我在GoogleCollab中运行这个。