使用 Pillow 库对图像应用 Box Blur
在此项目中,我们将使用 Box 滤波器对图像进行模糊处理。pillow 库中的 ImageFilter 类包含一个名为 BoxBlur() 的函数,该函数有助于应用 Box 模糊滤波器。它只接受一个参数,即模糊半径。
原始图像
算法
Step 1: Import Image and ImageFilter from Pillow. Step 2: Open the image. Step 3: Call the boxblur() method and specify the radius. Step 4: Display the output.
示例代码
from PIL import Image, ImageFilter im = Image.open('image_test.jpg') im1 = im.filter(ImageFilter.BoxBlur(radius = 7)) im1.show()
输出
广告