如何在OpenCV Python中对游戏进行逐帧截屏?

时间:2019-07-18 16:41:53

标签: python opencv computer-vision

我正在开发一个项目,在其中我需要对游戏中发生的事情进行截图。 我尽力找到解决方案,但总会遇到这样的问题。

Taking screenshot of screenshot doesn't work

我正在使用的代码如下:`

import numpy as np
from PIL import ImageGrab
import cv2
import time

time.sleep(5)
while(True):

    printscreen_pil =  ImageGrab.grab()
    printscreen_numpy =   np.array(printscreen_pil.getdata(),dtype='uint8')\
    .reshape((printscreen_pil.size[1],printscreen_pil.size[0],3)) 
    cv2.imshow('window',printscreen_numpy)
    if cv2.waitKey(25) & 0xFF == ord('q'):
        cv2.destroyAllWindows()
        break`

欢迎提出相同建议!

0 个答案:

没有答案