PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的
ImageFilter module
包含一组预定义的过滤器的定义,这些定义可与Image.filter()
方法。PIL.ImageFilter.RankFilter()
创建一个排名过滤器。等级过滤器将给定大小的窗口中的所有像素排序,然后返回等级的值。
用法: PIL.ImageFilter.RankFilter(size, rank)
参数:
size:内核大小,以像素为单位。
rank:选择什么像素值。将0用于最小过滤器,将大小*大小/2用于中值过滤器,将大小*大小-1用于最大过滤器,等等。
注意:等级值必须为整数类型。
使用的图片:
# 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 rank filter
im2 = im1.filter(ImageFilter.RankFilter(size = 3, rank = 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 rank filter
im2 = im1.filter(ImageFilter.RankFilter(size = 3, rank = 3 * 3-1))
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 rank filter
im2 = im1.filter(ImageFilter.RankFilter(size = 3, rank = (3 * 3)//2))
im2.show()
输出:
相关用法
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python sympy.rf()用法及代码示例
- Python sys.getrecursionlimit()用法及代码示例
- Python PIL eval()用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python os.scandir()用法及代码示例
- Python os.WIFEXITED()用法及代码示例
- Python os.waitid()用法及代码示例
- Python sympy.ff()用法及代码示例
- Python os.sync()用法及代码示例
- Python Decimal max()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python PIL | RankFilter() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。