Imagick::getImageChannelMean()函數是PHP中的內置函數,用於獲取一個或多個圖像通道的均值和標準差。它返回一個包含鍵為“mean”和值為“standardDeviation”的關聯數組。
用法:
array Imagick::getImageChannelMean(int $channel)
參數:該函數接受單個參數$channel,該參數保存對您的通道模式有效的通道常數。使用按位運算符可以組合多個通道類型常量。
Exceptions:該函數在錯誤時引發ImagickException。
返回值:成功時此函數返回TRUE。
以下示例程序旨在說明PHP中的Imagick::getImageChannelMean()函數:
程序1:
<?php
// Create new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Get the mean with CHANNEL constant as 1
// which corresponds to imagick::CHANNEL_RED
$mean = $imagick->getImageChannelMean(1);
print_r($mean);
?>
輸出:
Array( [mean] => 56510.812968516 [standardDeviation] => 20404.259764873 )
程序2:
<?php
// Create new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Get the mean with CHANNEL constant as 5
// which corresponds to imagick::CHANNEL_MAGENTA
$mean = $imagick->getImageChannelMean(5);
print_r($mean);
?>
輸出:
Array ( [mean] => 57217.085522456 [standardDeviation] => 18896.296535248 )
參考: https://www.php.net/manual/en/imagick.getimagechannelmean.php
相關用法
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick setColorspace()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick embossImage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick getImageChannelMean() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。