SciPy - Image Processing (scipy.ndimage)
Given the code below, what will be the output array after applying the Gaussian filter?
import numpy as np
from scipy.ndimage import gaussian_filter
image = np.array([[0, 0, 0],
[0, 10, 0],
[0, 0, 0]])
filtered = gaussian_filter(image, sigma=1)
print(np.round(filtered, 2))