2

我需要调整 mss 截取的屏幕截图的大小,以便 pytesseract 更好地阅读,我使用 pil+pyscreenshot 完成了它,但无法使用 mss 完成它。

from numpy import array, flip
from mss import mss
from pytesseract import image_to_string
from time import sleep

def screenshot():
    cap = array(mss().grab({'top': 171, 'left': 1088, 'width': 40, 'height': 17}))
    cap = flip(cap[:, :, :3], 2)
    return cap

def read(param):
    tesseract = image_to_string(param)
    return tesseract

while True:
    print(read(screenshot()))
    sleep(2)

在这里它与 pyscreenshot 一起工作

from time import sleep
from PIL import Image, ImageOps
import pyscreenshot as ImageGrab
import pytesseract

while 1:
    test = ImageGrab.grab(bbox=(1088,171,1126,187))
    testt = ImageOps.fit(test, (50, 28), method=Image.ANTIALIAS)
    testt.save('result.png')
    read = pytesseract.image_to_string(testt)
    print(read)
    sleep(2)

而且,我不关心维护方面收音机,使用 pytesseract 效果更好。

4

0 回答 0