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


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


Imagick::getImageChannelDistortion()函數是PHP中的內置函數,用於將圖像的圖像通道與重建的圖像進行比較,並返回指定的失真度量。

用法:

float Imagick::getImageChannelDistortion( Imagick $reference,
                                  int $channel, int $metric )

參數:此函數接受上述和以下所述的三個參數:


  • reference:它指定要比較的Imagick對象。
  • channel:它指定對您的通道模式有效的通道常數。要應用多個通道,請使用按位運算符組合通道類型常量。
  • metric:它指定度量標準類型常量之一。 METRIC常數列表如下:
    • imagick::METRIC_UNDEFINED(整數)
    • imagick::METRIC_MEANABSOLUTEERROR(整數)
    • imagick::METRIC_MEANSQUAREERROR(整數)
    • imagick::METRIC_PEAKABSOLUTEERROR(整數)
    • imagick::METRIC_PEAKSIGNALTONOISERATIO(整數)
    • imagick::METRIC_ROOTMEANSQUAREDERROR(整數)

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

返回值:成功時此函數返回TRUE。

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

示例1:

<?php 
  
// Create two new imagick object 
$imagick1 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190823154611/geeksforgeeks24.png'); 
$imagick2 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20191112223241/trans9.png'); 
  
// Get the distortion with METRIC constant as imagick::METRIC_MEANABSOLUTEERROR 
$distortion = $imagick1->getImageChannelDistortion($imagick2, 0, 1); 
echo $distortion; 
?>

輸出:

122728

示例2:

<?php 
  
// Create two new imagick object 
$imagick1 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190823154611/geeksforgeeks24.png'); 
$imagick2 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190823154611/geeksforgeeks24.png'); 
  
// Get the distortion with METRIC constant 
// as imagick::METRIC_MEANABSOLUTEERROR 
$distortion = $imagick1->getImageChannelDistortion($imagick2, 0, 1); 
echo $distortion; 
?>

輸出:

0

注意:在第二個示例中,由於兩個圖像相同,因此輸出為0。

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



相關用法


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