SciPy - Image Processing (scipy.ndimage)
What will be the output of this code?
import numpy as np from scipy.ndimage import uniform_filter arr = np.array([10, 20, 30, 40, 50]) result = uniform_filter(arr, size=3, mode='reflect') print(np.round(result, 2))
