image resize python numpy code example
Example 1: resize numpy array image
import cv2
import numpy as np
img = cv2.imread('your_image.jpg')
res = cv2.resize(img, dsize=(54, 140), interpolation=cv2.INTER_CUBIC)
Example 2: resize image array 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))