SciPy - Image Processing (scipy.ndimage)
The following code attempts to apply the Laplace filter but raises an error. What is the mistake?
from scipy import ndimage img = [[1, 2, 3], [4, 5, 6], [7, 8]] laplace_img = ndimage.laplace(img)
