java 西里尔字符识别 API

发布于 2024-12-25 19:27:13 字数 103 浏览 3 评论 0 原文

我需要一些可以执行西里尔字母字符识别的库。 我只有一个想法将字母从西里尔字母映射到拉丁字母,但质量很差。 有人可以告诉我是否有任何库。或者这个问题有其他解决方案吗?

提前致谢。

I need some lib that will perfom character recognition from cyrillic letters.
I hava only one idea to map letter from cyrillic to latin but it's bad quality.
Could someone tell me is there is any lib. Or otherwise any solution of this problem?

Thanks in advance.

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

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

发布评论

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

评论(2

表情可笑 2025-01-01 19:27:13

据我所知,没有原生开源 Java OCR SDK。有一些 Java API 可以包装对本机接口的调用,例如,对于最流行的开源 OCR 引擎之一 - Tesseract (http://groups.google.com/group/tesseract-ocr/) - 有一些 Java 包装器,例如tesjeract (http://code.google.com/p/tesjeract/) 或 Tess4J (http://tess4j.sf.net/)。这可能对您有用,但设置起来相当困难,并且需要您自行开发图像预处理和字体训练。

另一种解决方案可能是云服务。它要求最终用户应用程序具有互联网连接,但它独立于您的编程语言选择和资源限制。看看ABBYY Cloud OCR SDK,它是ABBYY最近推出的基于云的OCR SDK。它处于测试阶段,所以目前它是完全免费使用的,并且它有一个现成的 Java 代码示例

As far as i know there are no native opensource Java OCR SDKs. There are Java APIs which wrap calls for native interfaces, for example, for one of the most popular opensource OCR engines - Tesseract (http://groups.google.com/group/tesseract-ocr/) - there are some Java wrappers like tesjeract (http://code.google.com/p/tesjeract/) or Tess4J (http://tess4j.sf.net/). That could work for you, but it's rather hard to set up and will require developing image-preprocessing and font training on your side.

One more solution could be a cloud service. It requires end-user application to have the internet connection, but it's independent from your programming language choice and resources limitations. Have a look at ABBYY Cloud OCR SDK, it's a cloud-based OCR SDK recently launched by ABBYY. It's in beta, so for now it's totally free to use and it has a ready-to-go Java code samples.

平定天下 2025-01-01 19:27:13

虽然它不是用 Java 编写的,但当涉及到 OCR 时,我建议使用开源 Ocropus 系统 http://code.google.com/p/ocropus/

另外,此线程讨论 Java OCR 解决方案Java OCR 实现

另外,如果您只是想要一些临时解决方案,您可以尝试 Google Docs OCR http://googlesystem.blogspot.com/2009/09/google-docs-ocr.html

Though it is not in Java, when it comes to OCR I'd suggest the open source Ocropus system http://code.google.com/p/ocropus/

Also, this thread discusses Java OCR solutions Java OCR implementation

Also, if you just want some ad hoc solution you could try Google Docs OCR http://googlesystem.blogspot.com/2009/09/google-docs-ocr.html

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