charcoal()生成原始图像的草图类型的图像。使用倒置颜色生成与边提取非常相似的图像。一种艺术模拟,charcoal()可以在纸上模拟图画。
用法:
wand.image.charcoal(radius, sigma)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
radius | numbers.Real | 高斯算子的大小。 |
sigma | numbers.Real | 高斯的标准偏差。 |
源图像:
范例1:
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# Charcoal fx using charcoal() function
img.charcoal(radius = 1.5, sigma = 0.5)
img.save(filename ="ch_koala.jpeg")
输出:
范例2:增加半径和西格玛值。
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# Charcoal fx using charcoal() function
img.charcoal(radius = 4, sigma = 0.65)
img.save(filename ="ch_koala_2.jpeg")
输出:
相关用法
- Python Pgmagick charcoal()用法及代码示例
- Python Wand save()用法及代码示例
- Python Wand vignette()用法及代码示例
- Python Wand distort()用法及代码示例
- Python Wand gaussian_blur()用法及代码示例
- Python Wand transform()用法及代码示例
- Python Wand crop()用法及代码示例
- Python Wand rotational_blur()用法及代码示例
- Python Wand Image()用法及代码示例
- Python Wand motion_blur()用法及代码示例
- Python Wand shade()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Python – charcoal() method in Wand。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。