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


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


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

用法:

float Imagick::getImageDistortion(Imagick $reference, int $metric)

參數:該函數接受上述和以下描述的兩個參數:


  • $reference:它指定需要比較的Imagick對象。
  • $metric:它指定度量標準類型常量之一。
    METRIC常數列表如下:
    • imagick::METRIC_UNDEFINED(0)
    • imagick::METRIC_MEANABSOLUTEERROR(1)
    • imagick::METRIC_MEANSQUAREERROR(2)
    • imagick::METRIC_PEAKABSOLUTEERROR(3)
    • imagick::METRIC_PEAKSIGNALTONOISERATIO(4)
    • imagick::METRIC_ROOTMEANSQUAREDERROR(5)

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

返回值:此函數返回圖像上使用的失真度量。

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

程序1:

<?php 
  
// Create a new imagick object 
$imagick1 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
$imagick2 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); 
  
// Get the distortion with METRIC constant 
// as imagick::METRIC_ROOTMEANSQUAREDERROR 
$distortion = $imagick1->getImageDistortion($imagick2, 5); 
  
echo $distortion; 
?>

輸出:

0.97254902124405

程序2:

<?php 
  
// Create a new imagick object 
$imagick1 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
$imagick2 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); 
  
// Get the distortion with METRIC constant 
// as imagick::METRIC_PEAKSIGNALTONOISERATIO 
$distortion = $imagick1->getImageDistortion($imagick2, 4); 
  
echo $distortion; 
?>

輸出:

0.020707619325613

程序3:

<?php 
  
// Create a new imagick object 
$imagick1 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
$imagick2 = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the distortion with METRIC constant 
// as imagick::METRIC_ROOTMEANSQUAREDERROR 
$distortion = $imagick1->getImageDistortion($imagick2, 4); 
  
echo $distortion; 
?>

輸出:

0 because both images are same.

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



相關用法


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