PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。 ImageFilter模块包含一组预定义的滤镜的定义,可以与Image.filter()方法一起使用。
PIL.ImageFilter.GaussianBlur()
方法创建高斯模糊滤镜。
用法: PIL.ImageFilter.GaussianBlur(radius=5)
参数:
radius-模糊半径。通过改变半径的值,得到不同强度的高斯模糊图像。
返回类型: 一个图像。
使用的图片:
# Importing Image and ImageFilter module from PIL package
from PIL import Image, ImageFilter
# creating a image object
im1 = Image.open(r"C:\Users\System-Pc\Desktop\leave.JPG")
# applying the Gaussian Blur filter
im2 = im1.filter(ImageFilter.GaussianBlur(radius = 5))
im2.show()
输出:
radius:这里使用的半径值为2。
Importing Image and ImageFilter module from PIL package
from PIL import Image, ImageFilter
# creating a image object
im1 = Image.open(r"C:\Users\System-Pc\Desktop\leave.JPG")
# applying the Gaussian Blur filter
im2 = im1.filter(ImageFilter.GaussianBlur(radius = 2))
im2.show()
输出:
相关用法
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python os.urandom()用法及代码示例
- Python os.lseek()用法及代码示例
- Python Tensorflow abs()用法及代码示例
- Python os.chflags()用法及代码示例
- Python os.renames()用法及代码示例
- Python Tensorflow log()用法及代码示例
- Python Tensorflow exp()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python os.lchown()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.S()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | GaussianBlur() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。