当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PIL Image.split()用法及代码示例


PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。

Image.split()方法用于将图像分成单独的波段。此方法从图像返回单个图像带的元组。
分割“RGB”图像会创建三个新图像,每个图像都包含一个原始波段(红色,绿色,蓝色)的副本。

用法:
var = Image.Image.split(image_object)
OR
var = Image.Image.split(path_of_image)

返回值:它返回包含带的元组。

代码1:

# importing Image class from PIL package 
from PIL import Image 
  
# opening a multiband image (RGB specifically) 
im = Image.open(r"C:\Users\Admin\Pictures\network.png") 
  
# split() method 
# this will split the image in individual bands 
# and return a tuple 
im1 = Image.Image.split(im) 
  
# showing each band 
im1[0].show() 
im1[1].show() 
im1[2].show()

输出:

代码2:

# importing Image class from PIL package 
from PIL import Image 
  
# opening a singleband image 
im = Image.open(r"C:\Users\Admin\Pictures\singleband.png") 
  
# split() method 
# this will split the image in individual bands 
# and return a tuple (of 1 element for singleband) 
im1 = Image.Image.split(im) 
  
# showing image 
im1[0].show()

输出:

使用的图像:



相关用法


注:本文由纯净天空筛选整理自sanjeev2552大神的英文原创作品 Python PIL | Image.split() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。