level()函数控制图像的黑白边界。与gamma()方法类似,可以使用gamma关键字参数来调整mid-point级别。黑白点参数的期望值介于0.0和1.0之间,代表百分比。
用法:
wand.image.evaluate(operator, value, channel)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
black | numbers.Real | 黑点,占系统量子范围的百分比。默认为0 .. |
white | numbers.Real | 白点,占系统量子范围的百分比。默认为1.0。 |
gamma | numbers.Real | 可选的伽玛调节。值> 1.0会使图像的中间色调变亮,而值<1.0会使图像的中间色调变暗。 |
channel | basestringl | 频道类型。 |
范例1:
源图像:
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
img.level(0.2, 0.9, gamma = 1.1)
img.save(filename ="kl-level.jpeg")
输出:
范例2:
将黑白值增加到0.5和0.7。
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
img.level(0.5, 0.7, gamma = 1.1)
img.save(filename ="kl-level2.jpeg")
输出:
相关用法
- 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()用法及代码示例
- Python Wand unsharp_mask()用法及代码示例
- Python Wand colorize()用法及代码示例
- Python Wand fx()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand level() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。