适用于 iPhone 应用程序的移动 OCR 引擎

发布于 2024-08-11 10:28:08 字数 1536 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

卸妝后依然美 2024-08-18 10:28:08

有许多库可用于从图像中提取文本。

TesseractAbby 是我用过的最好的 OCR SDK。 Abby SDK 的主要优点是它的结果比 Tesseract 更好。它唯一的缺点是它是可以购买的。 Tesseract 的主要优点是它是开源的,您可以通过使用任何图像处理库来改进其结果。

1) 艾比 - https://github.com/abbyysdk/ocrsdk.com< /a>
它将图像上传到其服务器,将图像转换为文本并下载结果

2) Tesseract - https://github.com/nolanbrown/Tesseract-iPhone-Demo/tree/master/OCRDemo
它使用 tessrect sdk 将图像转换为文本。结果不如艾比准确,但不需要互联网连接。

3) Tesseract + OpenCV - https://github。 com/pablosproject/iPhone-OCR-Tesseract-and-OpenCV
可能是迄今为止我发现的最好的 sdk,可以在没有互联网连接的情况下读取图像。该代码的优点是它也集成了OpenCV,因此您可以添加博客提取算法和霍夫变换等算法来提高结果的准确性。

我希望它有帮助。

There are many libraries available for extracting text from images.

Tesseract and Abby are the best OCR SDK's I have used. The main advantage with Abby SDK is that its results are nice as compare to Tesseract . And the only disadvantage with it is that it is purchasable . While the main advantage in Tesseract is that it is open source and you can improve its result by using any image processing library.

1) Abby - https://github.com/abbyysdk/ocrsdk.com
it uploads the image to its server, converts image to text and downloads the result

2) Tesseract - https://github.com/nolanbrown/Tesseract-iPhone-Demo/tree/master/OCRDemo
It converts the image to text using tessrect sdk. Not as accurate result as Abby but does not require internet connection.

3) Tesseract + OpenCV - https://github.com/pablosproject/iPhone-OCR-Tesseract-and-OpenCV
Probably the best sdk I found so far to read image without internet connection. Advantage of this code is it integrates OpenCV too, thus you can add algorithms like blog extraction algorithm and hough transform to increase the accuracy of result.

I hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文