PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。 ImageChops模塊包含許多算術圖像運算,稱為通道運算(“chops”)。這些可以用於各種目的,包括特殊效果,圖像合成,算法繪畫等。
PIL.ImageChops.lighter()
方法對兩個圖像進行逐像素比較,然後返回包含較亮值的新圖像。至少一張圖像必須具有“1”模式。用法: PIL.ImageChops.lighter(image1, image2) 參數: image1: first image image2: second image 返回類型: 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\i3.PNG")
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\c1.PNG")
# applying lighter method
im3 = ImageChops.lighter(im1, im2)
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\i3.PNG")
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\c1.PNG")
# applying lighter method
im3 = ImageChops.lighter(im2, im1)
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.lighter() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。