PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。 ImageOps模塊包含許多“現成的”圖像處理操作。該模塊有些實驗性,大多數操作員隻能處理L和RGB圖像。
ImageOps.solarize()
將高於閾值的所有像素值反轉,閾值僅表示圖像分割。
用法: PIL.ImageOps.solarize(image, threshold=130)
參數:
image-要曬黑的圖像。
threshold-超過此灰度級的所有像素都將反轉。
返回: 一個圖像。
使用的圖片:
# Importing Image and ImageOps module from PIL package
from PIL import Image, ImageOps
# creating a image1 object
im1 = Image.open(r"C:\Users\System-Pc\Desktop\a.JPG")
# image segmentation
# using threshold value = 130
# applying solarize method
im2 = ImageOps.solarize(im1, threshold = 130)
im2.show()
輸出:
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | ImageOps.solarize() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。