要對圖像應(yīng)用徑向模糊效果,可以使用Pillow庫中的ImageFilter
模塊。以下是一個示例代碼,演示如何在Python中使用Pillow庫對圖像應(yīng)用徑向模糊效果:
from PIL import Image, ImageFilter
# 打開要處理的圖像文件
image = Image.open('example.jpg')
# 應(yīng)用徑向模糊效果
blurred_image = image.filter(ImageFilter.GaussianBlur(radius=5))
# 保存處理后的圖像文件
blurred_image.save('blurred_example.jpg')
# 顯示原始圖像和處理后的圖像
image.show()
blurred_image.show()
在上面的代碼中,首先使用Image.open()
方法打開要處理的圖像文件。然后,使用filter()
方法和ImageFilter.GaussianBlur()
函數(shù)來應(yīng)用徑向模糊效果,其中radius
參數(shù)指定了模糊半徑。最后,使用save()
方法保存處理后的圖像文件,并使用show()
方法顯示原始圖像和處理后的圖像。