my_filter=np.ones([n,n])/(n**2) # Averaging filter (shape 5x5) # 2D CONVOLUTION in 3 DIFFERENT WAYS conv_result_same=sci.convolve(input_image,my_filter,'same') conv ...