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


PHP Imagick getImageChannelKurtosis()用法及代碼示例


Imagick::getImageChannelKurtosis()函數是PHP中的內置函數,用於獲取特定通道的峰度和偏度。

用法:

array Imagick::getImageChannelKurtosis( int $channel )

參數:該函數接受單個參數$channel,該參數用於指定對您的通道模式有效的通道常數。如果要應用於多個通道,則可以使用按位運算符組合channel-type常量。默認值為Imagick::CHANNEL_DEFAULT。


Exceptions:該函數在錯誤時引發ImagickException。

返回值:此函數返回具有峰度和偏度成員的數組。

以下示例程序旨在說明PHP中的Imagick::getImageChannelKurtosis()函數:

程序1:

<?php 
  
// Create two new imagick object 
$imagick1 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the Kurtosis and Skewness 
$kurtosis = $imagick1->getImageChannelKurtosis(); 
  
print_r($kurtosis); 
?>

輸出:

Array ( [kurtosis] => 3.4855489191387 [skewness] => -2.2453954888518 )

程序2:

<?php 
  
// Create new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); 
  
// Get the Kurtosis and Skewness with CHANNEL constant as 6 
// which corresponds to imagick::CHANNEL_BLUE 
$kurtosis = $imagick->getImageChannelKurtosis(6); 
  
print_r($kurtosis); 
?>

輸出:

Array ( [kurtosis] => 17.803640811167 [skewness] => -4.0753636831512 )

參考: https://www.php.net/manual/en/imagick.getimagechannelkurtosis.php



相關用法


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