SciPy - Image Processing (scipy.ndimage)
What will be the output shape of the following code snippet?
import numpy as np from scipy.ndimage import sobel image = np.zeros((5,5)) edges = sobel(image, axis=0) print(edges.shape)
