Python PIL Image.point()方法
PIL是Python图像库,它为Python解释器提供了图像编辑功能。图像模块提供了一个同名的类,用来表示一个PIL图像。该模块还提供了一些工厂函数,包括从文件加载图像和创建新图像的函数。
Image.point()通过一个查找表或函数来映射这个图像。
语法:通过一个查找表或函数来映射这个图像。
参数:
lut – 一个查找表,包含图像中每个波段的256(或65336,如果self.mode==”I “和mode==”L”)值。可以用一个函数来代替,它应该只接受一个参数。对于每个可能的像素值,该函数被调用一次,得到的表被应用于图像的所有波段。
mode – 输出模式(默认与输入相同)。在当前版本中,只有当源图像的模式为 “L “或 “P”,而输出的模式为 “1 “或源图像的模式为 “I “而输出的模式为 “L “时,才能使用该模式。
返回:一个图像对象。
使用的图片:
# importing Image class from PIL package
from PIL import Image
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
# using point function
threshold = 191
im = im.point(lambda p: p >value threshold and 255)
im.show()
输出:
另一个例子:这里改变阈值。
使用的图片:
# importing Image class from PIL package
from PIL import Image
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
# using point function
threshold = 120
im = im.point(lambda p: p > threshold and 255)
im.show()
输出: