要對圖像應用高斯模糊效果,可以使用Python中的Pillow庫。下面是一個示例代碼,演示如何對圖像應用高斯模糊效果:
from PIL import Image, ImageFilter
# 打開圖像文件
image = Image.open("example.jpg")
# 應用高斯模糊效果
blurred_image = image.filter(ImageFilter.GaussianBlur(radius=5))
# 保存處理后的圖像
blurred_image.save("blurred_example.jpg")
在這段代碼中,首先使用Image.open()函數打開要處理的圖像文件,然后使用filter()函數和ImageFilter.GaussianBlur類應用高斯模糊效果。最后,使用save()函數保存處理后的圖像。可以根據需要調整高斯模糊的半徑值(radius)來控制模糊程度。