python版opencv使用resize调整图片大小:
res = cv2.resize(img,None,fx=0.6, fy=0.6, interpolation = cv2.INTER_CUBIC)。
from PIL import ImageGrab是对电脑屏幕的截屏,而不是对浏览器的截屏。
import ImageGrabim = ImageGrab.grab()im.show()
本文共 250 字,大约阅读时间需要 1 分钟。
python版opencv使用resize调整图片大小:
res = cv2.resize(img,None,fx=0.6, fy=0.6, interpolation = cv2.INTER_CUBIC)。
from PIL import ImageGrab是对电脑屏幕的截屏,而不是对浏览器的截屏。
import ImageGrabim = ImageGrab.grab()im.show()
转载于:https://my.oschina.net/silverhammer/blog/340001