日晒效应是在照相机中的胶卷极度过度曝光的情况下观察到的色调反转效果。最有可能首先在包括太阳(例如sol,sun)的风景照片中观察到这种效果。太阳不是图像中最白的斑点,而是变成了黑色或灰色。 solarize()函数通过使用负值替换高于定义阈值的像素值,在图像上产生“burned”效果。
用法:
wand.image.solarize(amount, method)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
threshold | numbers.Real | 在0.0和quantum_range./td>之间 |
channel | basestring | 目标的可选颜色通道。见频道 |
源图像:
范例1:
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# solarized image using solarize() function
img.solarize(threshold = 0.5 * img.quantum_range)
img.save(filename ="solpkoala.jpeg")
输出:
范例2:
降低阈值。
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# solarized image using solarize() function
img.solarize(threshold = 0.25 * img.quantum_range)
img.save(filename ="impkoala2.jpeg")
输出:
相关用法
- Python Wand solarize()用法及代码示例
- Python PIL ImageOps.solarize()用法及代码示例
- Python Pgmagick solarize()用法及代码示例
- Python Wand function()用法及代码示例
- Python Wand gaussian_blur()用法及代码示例
- Python Wand transform()用法及代码示例
- Python Wand crop()用法及代码示例
- Python Wand rotational_blur()用法及代码示例
- Python Wand Image()用法及代码示例
- Python Wand shade()用法及代码示例
- Python Wand sharpen()用法及代码示例
- Python Wand adaptive_sharpen()用法及代码示例
- Python Wand noise()用法及代码示例
- Python Wand blue_shift()用法及代码示例
- Python Wand color_matrix()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand solarize() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。