PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。圖像模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。
PIL.Image.eval()
將函數(應使用一個參數)應用於給定圖像中的每個像素。如果圖像有多個波段,則對每個波段都應用相同的函數。請注意,該函數會針對每個可能的像素值進行一次評估,因此您不能使用隨機分量或其他生成器。
用法: PIL.Image.eval(image, *args)
參數:
image-輸入圖像。
function-一個函數對象,帶有一個整數參數。
返回類型: 一個圖像。
使用的圖片:
# Importing Image module from PIL package
from PIL import Image
# creating a image object
im2 = Image.open(r"C:\Users\System-Pc\Desktop\lion.PNG")
# applying the eval method
im3 = Image.eval(im2, (lambda x:254 - x * 15))
im3.show()
輸出:
另一個示例:在這裏,我們更改另一個圖像的參數值。
使用的圖像-
# Importing Image module from PIL package
from PIL import Image
# creating a image object
im2 = Image.open(r"C:\Users\System-Pc\Desktop\eval2image.PNG")
# applying the eval method
im3 = Image.eval(im2, (lambda x:240 - x * 12))
im3.show()
輸出:
相關用法
- Python PIL ImageMath.eval()用法及代碼示例
- Python Pandas dataframe.eval()用法及代碼示例
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python PIL BoxBlur()用法及代碼示例
- Python hasattr()用法及代碼示例
- Python os.truncate()用法及代碼示例
- Python os.getenvb()用法及代碼示例
- Python sympy RGS用法及代碼示例
- Python os.getgroups()用法及代碼示例
- Python os.fsdecode()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | eval() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。