我正在尝试在屏幕截图上进行 OCR 识别,在屏幕截图(桌面区域,您单击的区域)后,它转到pibxbuffer,其中内容转到pytesseract。但是使用 pixbuffer 后图像质量很差:它是倾斜的(我试图将它保存在一个目录中,而不是 pixbuffer,并查看了它)。
def takeScreenshot(self, x, y, width = 150, height = 30):
self.width=width
self.height=height
window = Gdk.get_default_root_window()
#x, y, width, height = window.get_geometry()
#print("The size of the root window is {} x {}".format(width, height))
# get_from_drawable() was deprecated. See:
# https://developer.gnome.org/gtk3/stable/ch24s02.html#id-1.6.3.4.7
pixbufObj = Gdk.pixbuf_get_from_window(window, x, y, width, height)
height = pixbufObj.get_height()
width = pixbufObj.get_width()
image = Image.frombuffer("RGB", (width, height),
pixbufObj.get_pixels(), 'raw', 'RGB', 0, 1)
image = image.resize((width*20,height*20), Image.ANTIALIAS)
#image.save("saved.png")
print(pytesseract.image_to_string(image))
print("takenScreenshot:",x,y)
当我将图像保存到目录时,它没问题(质量)并且识别效果很好。
尝试没有Image.ANTIALIAS
- 没有区别。
(缩放20的目的:我尝试了识别保存在目录中的图像的代码,没有缩放识别质量很差。)
问题是图像偏斜。