Python – Wand 中的 charcoal() 方法
charcoal()生成原始图像的草图类型的图像。使用反转颜色生成与边缘提取非常相似的图像。艺术模拟之一,charcoal() 可以模拟纸上的绘图。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
radius | numbers.Real | The size of the Gaussian operator. |
sigma | numbers.Real | The standard deviation of the Gaussian. |
源图像:
示例 1:
wand.image.charcoal(radius, sigma)
输出:
示例 2:增加半径和 sigma 值。
# 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")
输出: