SciPy - Image Processing (scipy.ndimage)
Given the code below, what is the shape of
zoomed_img?
import numpy as np from scipy.ndimage import zoom img = np.zeros((10, 10)) zoomed_img = zoom(img, zoom=1.5, order=3)
