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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。