PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的ImageChops模块包含许多算术图像运算,称为通道运算(“chops”)。这些可以用于各种目的,包括特殊效果,图像合成,算法绘画等。
PIL.ImageChops.logical_and()
方法在两个图像之间应用逻辑与。至少一张图像必须具有“1”模式。
图片1
图片2:
用法: PIL.ImageChops.logical_and(image1, image2) 参数: image1: first image image2: second image 返回类型: Image
# Importing Image and ImageChops module from PIL package
from PIL import Image, ImageChops
# creating a image1 object
im1 = Image.open(r"C:\Users\sadow984\Desktop\a2.PNG") .convert("1")
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\x5.PNG") .convert("1")
# applying logical_and method
im3 = ImageChops.logical_and(im1, im2)
im3.show()
输出:
PIL.ImageChops.logical_or()
方法在两个图像之间应用逻辑或。至少一张图像必须具有“1”模式。
用法: PIL.ImageChops.logical_or(image1, image2) 参数: image1: first image image2: second image 返回类型: Image
# Importing Image and ImageChops module from PIL package
from PIL import Image, ImageChops
# creating a image1 object
im1 = Image.open(r"C:\Users\sadow984\Desktop\a2.PNG") .convert("1")
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\x5.PNG") .convert("1")
# applying logical_or method
im3 = ImageChops.logical_or(im1, im2)
im3.show()
输出:
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python sys.getrecursionlimit()用法及代码示例
- Python Tensorflow sin()用法及代码示例
- Python os.lseek()用法及代码示例
- Python os.renames()用法及代码示例
- Python PIL tobytes()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python PIL UnsahrpMask()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.getppid()用法及代码示例
- Python os.makedev()用法及代码示例
- Python os.set_inheritable()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python PIL | logical_and() and logical_or() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。