Python中的魔杖gamma()函数
gamma()允许我们调整图像的亮度。结果像素定义为像素^(1/伽玛)。 gamma 的值通常在 0.8 和 2.3 范围之间,1.0 的值不会影响生成的图像。
参数 :
Parameter | Input Type | Description |
---|---|---|
adjustment_value | numbers.Real | value to adjust gamma level. |
channel | basestring | optional 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")
输出 :
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。