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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。