如何使用 sikulix IDE 读取屏幕上以图像形式呈现的文本?

发布于 2025-01-14 23:59:29 字数 336 浏览 0 评论 0原文

我在Windows 10中使用sikulix IDE版本2.0.5,到目前为止使用是成功的。

我想使用 sikulix IDE 读取屏幕上的特定单行文本。我无法将文本复制到剪贴板,因为它位于图像上。

导入 jar 后,我可以使用 Java 中的 Tesseract 和 tess4j 在 eclipse IDE 上执行此操作。

在我的项目中,我希望使用 sikulix IDE,因为我发现它在读取图像方面很可靠。

我现在的问题是如何使用 sikulix IDE 读取屏幕上以图像形式呈现的文本?有没有一种方法可以在 sikuli IDE 中使用。

有人可以指导我吗!

谢谢。

I'm using sikulix IDE version 2.0.5 in windows 10 and the usage so far is successful.

I want to read a specific single line text on the screen using sikulix IDE. I can't copy the text to the clipboard because it on an image.

I'm able to do this on eclipse IDE using Tesseract and tess4j in Java after I imported its jar.

With my project I'm looking to use sikulix IDE because I found it to be reliable in reading images.

My question now is how can I read the text on the screen presented as an image using sikulix IDE? Is there a method I can use within the sikuli IDE.

Can someone guide me!

Thank you.

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

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

发布评论

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

评论(1

感情洁癖 2025-01-21 23:59:29

text = Image.create("givenImage.png").text()

如果您只想读取图像的一部分:

text = Image.create("givenImage.png") .getSub(x, y, w, h).text()

其中 x 和 y 从图像左上角开始计数为 (0, 0)。

图像顶部的示例:

img = Image.create("givenImage.png")
text = img.getSub(0,0,img.w, 20).text()

来自 SikuliX 的 RaiMan

text = Image.create("givenImage.png").text()

If you want to read from only part of the image:

text = Image.create("givenImage.png").getSub(x, y, w, h).text()

where x and y are counting from the top left corner of the image as (0, 0).

Example for top of image:

img = Image.create("givenImage.png")
text = img.getSub(0,0,img.w, 20).text()

RaiMan from SikuliX

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