當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Wand gaussian_blur()用法及代碼示例


另一類模糊是高斯模糊。高斯模糊與法線的不同之處在於,高斯模糊是通過使用高斯函數實現的。隻是形式的任何等式:稱為高斯函數。

用法:
wand.image.gaussian_blur(radius="radius_value",  
                           sigma="sigma_value",  
            channel = "optional_channel_value") 
  
# radius should always be greater than sigma(standard deviation)

參數:

參數 輸入類型 描述
radius numbers.real 的半徑(以像素為單位),不計算中心像素。
sigma numbers.real 標準偏差(以像素為單位)
channel basestring 可選的顏色通道以應用模糊。

Image Used:

範例1:



# import display() to show final image 
from wand.display import display 
  
# import Image from wand.image module 
from wand.image import Image 
  
# read file using Image function 
with Image(filename ="koala.jpeg") as img:
  
    # perform adaptive blur effect using adaptive_blur() function 
    img.gaussian_blur(radius = 5, sigma = 4) 
  
    # save final image 
    img.save(filename ="gb_koala.jpeg") 
  
    # display final image 
    display(img)

Output:

範例2:減小半徑和西格瑪

# import display() to show final image 
from wand.display import display 
  
# import Image from wand.image module 
from wand.image import Image 
  
# read file using Image function 
with Image(filename ="koala.jpeg") as img:
  
    # perform adaptive blur effect using adaptive_blur() function 
    img.gaussian_blur(radius = 2, sigma = 3) 
  
    # save final image 
    img.save(filename ="gb_koala.jpeg") 
  
    # display final image 
    display(img)

Output:




相關用法


注:本文由純淨天空篩選整理自RahulSabharwal大神的英文原創作品 Wand gaussian_blur() function in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。