gamma()允许我们调整图像的亮度。所得像素定义为pixel ^(1 /gamma)。伽玛值通常在0.8和2.3范围之间,而值1.0不会影响生成的图像。
参数:
参数 | 输入类型 | 描述 |
---|---|---|
adjustment_value | numbers.Real | 调整伽玛水平的值。 |
channel | basestring | 可选通道以应用伽玛校正。 |
例:
源图像:
# 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")
输出:
相关用法
- Python math gamma()用法及代码示例
- Python sympy.stats.Gamma()用法及代码示例
- Python Scipy stats.gamma()用法及代码示例
- Python sympy.gamma()用法及代码示例
- Python Pgmagick gamma()用法及代码示例
- Python numpy.random.gamma()用法及代码示例
- Python Wand function()用法及代码示例
- Python Wand gaussian_blur()用法及代码示例
- Python Wand transform()用法及代码示例
- Python Wand crop()用法及代码示例
- Python Wand rotational_blur()用法及代码示例
- Python Wand Image()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand gamma() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。