1

需要使用 mss witchout 保存和打开图像才能“优化”这里的任务是我的代码,对不起我的英语不好。

from PIL import Image
import pytesseract
import mss
import mss.tools

with mss.mss() as sct:

    monitor = {'top': 171, 'left': 1090, 'width': 40, 'height': 17}
    output = 'capture.png'.format(**monitor)

    sct_img = sct.grab(monitor)

    mss.tools.to_png(sct_img.rgb, sct_img.size, output=output)

    text = pytesseract.image_to_string(Image.open('capture.png'))

    print(text)
4

1 回答 1

0

你介意使用 Numpy 吗?

import mss
import numpy
import pytesseract


monitor = {'top': 171, 'left': 1090, 'width': 40, 'height': 17}
with mss.mss() as sct:
    im = numpy.array(sct.grab(monitor), dtype=numpy.uint8)
    im = numpy.flip(im[:, :, :3], 2)  # BGRA -> RGB conversion
    text = pytesseract.image_to_string(im)
    print(text)

一个简单的一次性时间比较给了我:

MSS.tools + PIL: 0.00988 s
MSS + Numpy    : 0.00222 s
于 2018-05-29T17:16:08.617 回答