当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PIL BoxBlur()用法及代码示例


PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。 ImageFilter模块包含一组预定义的过滤器的定义,这些定义可与Image.filter()方法。

PIL.ImageFilter.BoxBlur()通过将每个像素设置为在每个方向上延伸半径像素的方框中的像素平均值来模糊图像。支持任意大小的浮点半径。使用优化的实现,该实现对于任何半径值都相对于图像大小以线性时间运行。

Synatx: PIL.ImageFilter.BoxBlur()

Partameters: 
radius: Size of the box in one direction. Radius 0 does not blur, returns an identical image. Radius 1 takes 1 pixel in each direction, i.e. 9 pixels in total.

使用的图片:


# Importing Image and ImageFilter module from PIL package   
from PIL import Image, ImageFilter  
      
# creating a image object  
im1 = Image.open(r"C:\Users\sadow984\Desktop\download2.JPG")  
      
# applying the boxblur method  
im2 = im1.filter(ImageFilter.BoxBlur(0))  
      
im2.show() 

输出:

# Importing Image and ImageFilter module from PIL package   
from PIL import Image, ImageFilter  
      
# creating a image object  
im1 = Image.open(r"C:\Users\sadow984\Desktop\download2.JPG")  
      
# applying the boxblur method  
im2 = im1.filter(ImageFilter.BoxBlur(2))  
      
im2.show() 

输出:

# Importing Image and ImageFilter module from PIL package   
from PIL import Image, ImageFilter  
      
# creating a image object  
im1 = Image.open(r"C:\Users\sadow984\Desktop\download2.JPG")  
      
# applying the boxblur method  
im2 = im1.filter(ImageFilter.BoxBlur(8))  
      
im2.show() 

输出:



相关用法


注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python PIL | BoxBlur() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。