cv2.resize()和imutil.resize()

一、cv2.resize()  import cv2 img = cv2.imread("image1.png") print(img.shape) dst = cv2.resize(img,(img.shape[1]//2,img.shape[0]//2),interpolation=cv2.INTER_CUBIC) print(dst.shape) cv2.imshow("dst",dst)
相關文章
相關標籤/搜索