SciPy - Image Processing (scipy.ndimage)
Identify the error in this code snippet:
import numpy as np from scipy.ndimage import median_filter arr = np.array([1, 2, 3, 4, 5]) result = median_filter(arr, size='3') print(result)
