我已经创建了一个基于 ocr 的 android 应用程序。除了 tesseract 之外,还有其他可用的库吗?因为它已被 code.google.com 弃用。Asprise 似乎不是一个独立于平台的 OCR。我尝试过 Ron Cemer 的 Java OCR 库,但是他们针对每个角色和喜欢的格式进行了培训。
我没有选择从这部分移动。请帮助找到一个与 tesseract 具有相似性能的合适库。
您提供的任何反馈都将是可观的。提前致谢
你可能想看看https://github.com/rmtheis/tess-two。
tess-two 是 Tesseract Tools for Android (tesseract-android-tools) 的分支,增加了一些额外的功能。适用于 Android 的 Tesseract 工具是一组 Android API 和用于 Tesseract OCR 和 Leptonica 图像处理库的构建文件。
该项目适用于 Tesseract v3.02.02。Tesseract 3.02.02 和 Leptonica 1.69 所需的源代码包含在 tess-two/jni 文件夹中。
tess-two 子目录包含用于编译 Tesseract 和 Leptonica 库以在 Android 平台上使用的工具。它包含一个 Eclipse Android 库项目,该项目提供了一个 Java API,用于访问本机编译的 Tesseract 和 Leptonica API。
Google 最近发布了一个 OCR API: https ://developers.google.com/vision/text-overview
只需将以下行添加到您的依赖项中:
compile 'com.google.android.gms:play-services-vision:9.2.0'