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


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


日曬效應是在照相機中的膠卷極度過度曝光的情況下觀察到的色調反轉效果。最有可能首先在包括太陽(例如sol,sun)的風景照片中觀察到這種效果。太陽不是圖像中最白的斑點,而是變成了黑色或灰色。 solarize()函數通過使用負值替換高於定義閾值的像素值,在圖像上產生“burned”效果。

用法:
wand.image.solarize(amount, method)

參數:

參數 輸入類型 描述
threshold numbers.Real 在0.0和quantum_range./td>之間
channel basestring 目標的可選顏色通道。見頻道

源圖像:

範例1:



# Import Image from wand.image module 
from wand.image import Image 
  
# Read image using Image function 
with Image(filename ="koala.jpeg") as img:
  
    # solarized image using solarize() function 
    img.solarize(threshold = 0.5 * img.quantum_range) 
    img.save(filename ="solpkoala.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:
  
    # solarized image using solarize() function 
    img.solarize(threshold = 0.25 * img.quantum_range) 
    img.save(filename ="impkoala2.jpeg")

輸出:




相關用法


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