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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。