Cambiar la matriz de imágenes de tamaño Python
import cv2
#img is your image as array
#size of the new image
height = 500
width = 500
img_resized = cv2.resize(img, (width, height))
CodeHunter