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


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


gamma()允許我們調整圖像的亮度。所得像素定義為pixel ^(1 /gamma)。伽瑪值通常在0.8和2.3範圍之間,而值1.0不會影響生成的圖像。

參數:

參數 輸入類型 描述
adjustment_value numbers.Real 調整伽瑪水平的值。
channel basestring 可選通道以應用伽瑪校正。
例:

源圖像:

# Import Image from wand.image module 
from wand.image import Image 
  
# Read image using Image function 
with Image(filename ="koala.jpeg") as img:
    img.gamma(1.35) 
    img.save(filename ="kl-gamma.jpeg")

輸出:



範例2:將adjustment_value增加到1.75。

# Import Image from wand.image module 
from wand.image import Image 
  
# Read image using Image function 
with Image(filename ="koala.jpeg") as img:
    img.gamma(1.75) 
    img.save(filename ="kl-gamma2.jpeg")

輸出:

相關用法


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