当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Wand charcoal()用法及代码示例


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")

输出:

相关用法


注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Python – charcoal() method in Wand。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。