Python中的魔杖solarize()函数
曝光效果是在相机中的胶卷过度曝光的情况下观察到的色调反转效果。最有可能的是,这种效应首先在风景照片中观察到,包括太阳(eq sol, sun)。太阳不是图像中最白的地方,而是变成黑色或灰色。 solarize()函数通过用否定值替换高于定义阈值的像素值来在图像上创建“烧毁”效果。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
threshold | numbers.Real | between 0.0 and quantum_range./td> |
channel | basestring | Optional color channel to target. See CHANNELS |
源图像:
示例 1:
wand.image.solarize(amount, method)
输出 :
示例 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.5 * img.quantum_range)
img.save(filename ="solpkoala.jpeg")
输出: