晕影效果为图像创建柔和模糊的椭圆框。晕影效果用于将焦点应用于我们想要的图像部分。 x 和 y 参数用于控制从图像边界插入的椭圆的边,半径和 sigma 参数用于控制模糊度。如果您希望 ImageMagick 从定义的 sigma 值中选择一个值,则可以省略半径。
用法:
wand.image.vignette(radius, sigma, x, y)
参数:
参数 输入类型 描述 radius numbers.Real 高斯半径
sigma numbers.Real 高斯的标准偏差,以像素为单位
x numbers.Integer 椭圆x-edge
y numbers.Integer 椭圆y-edge
源图像:
范例1:
Python3
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# vignette image using vignette() function
img.vignette(sigma = 3, x = 10, y = 10)
img.save(filename ="vkoala.jpeg")
输出:
范例2:增加西格玛值
Python3
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# vignette image using vignette() function
img.vignette(sigma = 10, x = 1, y = 1)
img.save(filename ="vkoala2.jpeg")
输出:
相关用法
- Python Wand vignette()用法及代码示例
- 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()用法及代码示例
- Python Wand implode()用法及代码示例
- Python Wand polaroid()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand vignette() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。