PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的ImageChops模块包含许多算术图像运算,称为通道运算(“chops”)。这些可以用于各种目的,包括特殊效果,图像合成,算法绘画等。
PIL.ImageChops.subtract()
方法将两张图片相减,然后将结果除以比例并加上偏移量。如果省略,则缩放默认为1.0,偏移为0.0。至少一张图像必须具有“1”模式。
用法: PIL.ImageChops.subtract(image1, image2, scale=1.0, offset=0) 参数: image1: first image image2: second image scale: numeric value offset: numeric value 返回类型: Image
图片1:
图片2:
# 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")
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\x5.PNG")
# applying subtract method
im3 = ImageChops.add(im1, im2, scale = 1.0, offset = 2)
im3.show()
输出:
# 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")
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\x5.PNG")
# applying subtract method
im3 = ImageChops.add(im1, im2, scale = 1.0, offset = 2)
im3.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()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python PIL | ImageChops.subtract() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。