python版opencv

python版opencv使用resize调整图片大小:

res = cv2.resize(img,None,fx=0.6, fy=0.6, interpolation = cv2.INTER_CUBIC)。

from PIL import ImageGrab是对电脑屏幕的截屏,而不是对浏览器的截屏。

import ImageGrab
im = ImageGrab.grab()
im.show()


你可能感兴趣的:(python版opencv)