我正在开发一个项目,在其中我需要对游戏中发生的事情进行截图。 我尽力找到解决方案,但总会遇到这样的问题。
我正在使用的代码如下:`
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`
欢迎提出相同建议!