unsharp_mask()與python Wand中的常規sharpen()方法相似,但是它使控件可以在filter和original(數量參數)以及閾值之間進行混合。如果該值大於1.0,則應用銳化濾鏡;如果大於1.0,則該值小於1.0。閾值超過0.0的值會減少銳化。
用法:
wand.image.unsharp_mask(radius, sigma, amount, threshold)
參數:
參數 | 輸入類型 | 描述 |
---|---|---|
radius | numbers.Real | 高斯光圈的大小。 |
sigma | numbers.Real | 高斯的標準偏差,以像素為單位。 |
amount | numbers.Real | 原始圖像和添加回原始圖像中的模糊圖像之間的差異百分比 |
threshold | numbers.Real | 應用差異量所需的像素閾值。 |
Source Image:
範例1:
# import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# generating sharp image using unsharp_sharpen() function.
img.unsharp_mask(radius = 10,
sigma = 4,
amount = 1,
threshold = 0)
img.save(filename ="unsharpmaskkoala.jpeg")
Output:
範例2:將閾值增加到0.5,並減小半徑和sigma。
# import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# generating sharp image using unsharp_sharpen() function.
img.unsharp_mask(radius = 8,
sigma = 4,
amount = 1,
threshold = 0.5)
img.save(filename ="unsharpmaskkoala.jpeg")
Output:
相關用法
- 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 colorize()用法及代碼示例
- Python Wand fx()用法及代碼示例
- Python Wand implode()用法及代碼示例
注:本文由純淨天空篩選整理自RahulSabharwal大神的英文原創作品 Wand unsharp_mask() function – Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。