📜  Python中的魔杖gamma()函数

📅  最后修改于: 2022-05-13 01:54:40.189000             🧑  作者: Mango

Python中的魔杖gamma()函数

gamma()允许我们调整图像的亮度。结果像素定义为像素^(1/伽玛)。 gamma 的值通常在 0.8 和 2.3 范围之间,1.0 的值不会影响生成的图像。

参数 :

ParameterInput TypeDescription
adjustment_valuenumbers.Realvalue to adjust gamma level.
channelbasestringoptional channel to apply gamma correction.
例子:

源图像:

# Import Image from wand.image module
from wand.image import Image
  
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
    img.gamma(1.35)
    img.save(filename ="kl-gamma.jpeg")

输出 :

示例 2:将adjustment_value 增加到1.75。

# Import Image from wand.image module
from wand.image import Image
  
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
    img.gamma(1.75)
    img.save(filename ="kl-gamma2.jpeg")

输出 :