屏幕截图用于 OCR 的屏幕特定区域
有谁知道如何实现可以与 OCR 一起使用的屏幕截图的库或想法吗?
我需要的是能够在屏幕上记录 3 或 4 个矩形(忽略这些区域之外),然后可以使用它们来识别希望在某个时间点出现在这些区域内的文本。
理想情况下,vb.net / c#.net 或类似的东西会很有用...
有人有这方面的经验,或者可以提供一些有用的建议吗?
非常感谢
Does anyone know of any libraries or ideas how to achieve screen captures which can then be used with OCR?
What I need is to be able to record 3 or 4 rectangles on the screen (ignoring outside these areas) which can then be used to recognise the text which will hopefully appear inside these areas at some point on time.
Ideally vb.net / c#.net or similar would be useful...
Does anyone have any experience with this, or could offer some useful advise?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您知道这些矩形的坐标,则可以将它们与图像一起发送到 Tesseract 引擎进行 OCR。 Tesseract 公开了一个采用图像和直角坐标的 API 方法。
您可以使用其 .NET 包装器:tessnet2 for Tess 2.04 和 tesseractdotnet 适用于 Tess 3.01。
If you know the coordinates of those rectangles, you can send them along with the image to Tesseract engine for OCR. Tesseract exposes an API method that takes an image and rectangular coordinates.
You can use its .NET wrappers: tessnet2 for Tess 2.04 and tesseractdotnet for Tess 3.01.