PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
Image.point()
通过查找表或函数映射此图像。
用法: Maps this image through a lookup table or function.
参数:
lut:一个查找表,在图像中每个波段包含256个值(如果self.mode ==“ I”且mode == “L”,则为65336)。可以改用函数,它应使用单个参数。对每个可能的像素值调用一次该函数,并将结果表应用于图像的所有波段。
mode:输出模式(默认与输入相同)。在当前版本中,仅当源图像的模式为“L”或“P”且输出的图像模式为“1”或源图像的模式为“I”且输出模式为“L”时,才可以使用此选项。
返回值:Image对象。
使用的图片:
# 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()
输出:
相关用法
- 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 | Image.point() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。