Python PIL的logical_and()和logical_or()方法

Python PIL的logical_and()和logical_or()方法

PIL是Python成像库,它为Python解释器提供了图像编辑功能。ImageChops模块包含一些算术图像操作,称为通道操作(”chops”)。这些可以用于各种目的,包括特殊效果、图像合成、算法绘画等等。

PIL.ImageChops.logical_and()方法在两个图像之间应用逻辑和。至少有一个图像必须有模式 “1”。

Image 1:
Python PIL的logical_and()和logical_or()方法

Image2:
Python PIL的logical_and()和logical_or()方法

语法: PIL.ImageChops.logical_and(image1, image2)

参数:
image1: 第一个图片
image2: 第二个图片

返回类型: 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() 

输出:
Python PIL的logical_and()和logical_or()方法

PIL.ImageChops.logical_or()方法在两个图像之间应用逻辑OR。至少有一个图像必须有模式 “1”。

语法: PIL.ImageChops.logical_or(image1, image2)

参数:
image1: 第一个图片
image2: 第二个图片

返回类型: 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 PIL的logical_and()和logical_or()方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程