我可以使用 OCR 检测字体样式(粗体、斜体)吗?

发布于 2024-10-19 17:44:42 字数 1436 浏览 1 评论 0原文

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

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

发布评论

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

评论(2

久夏青 2024-10-26 17:44:42

Tesseract 3.0.1中有这样的功能,来自trunk。 API 中添加了一个新类 - ResultIterator,它具有以下您感兴趣的功能:

 WordFontAttributes(bool* is_bold,
                    bool* is_italic,
                    bool* is_underlined,
                    bool* is_monospace,
                    bool* is_serif,
                    bool* is_smallcaps,
                    int* pointsize,
                    int* font_id).  

实际上您可以从 此处。

There is such function in Tesseract 3.0.1, from trunk. A new class is added to the API - ResultIterator, which has the following function you are interested in:

 WordFontAttributes(bool* is_bold,
                    bool* is_italic,
                    bool* is_underlined,
                    bool* is_monospace,
                    bool* is_serif,
                    bool* is_smallcaps,
                    int* pointsize,
                    int* font_id).  

Actually you can see it yourself from here.

长梦不多时 2024-10-26 17:44:42

Tesseract 3.0x 基于 XML 的 hOCR 格式包含字符属性。你可能想尝试一下。

http://code.google.com/p/tesseract -ocr/问题/详细信息?id=377#c5

The Tesseract 3.0x's XML-based hOCR format includes character attributes. You may want to try that.

http://code.google.com/p/tesseract-ocr/issues/detail?id=377#c5

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