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


Python PIL ImageOps.solarize()用法及代码示例


PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。 ImageOps模块包含许多“现成的”图像处理操作。该模块有些实验性,大多数操作员只能处理L和RGB图像。

ImageOps.solarize()将高于阈值的所有像素值反转,阈值仅表示图像分割。

用法: PIL.ImageOps.solarize(image, threshold=130) 

参数
image-要晒黑的图像。
threshold-超过此灰度级的所有像素都将反转。

返回: 一个图像。

使用的图片:

# Importing Image and ImageOps module from PIL package  
from PIL import Image, ImageOps  
      
# creating a image1 object  
im1 = Image.open(r"C:\Users\System-Pc\Desktop\a.JPG")  
  
# image segmentation  
# using threshold value = 130 
# applying solarize method  
im2 = ImageOps.solarize(im1, threshold = 130)  
  
im2.show()

输出:



相关用法


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