当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick getImageChannelDistortions()用法及代码示例


Imagick::getImageChannelDistortions()函数是PHP中的内置函数,用于将图像的一个或多个图像通道与重建图像进行比较,并返回指定的失真度量。 getImageChannelDistortion()与getImageChannelDIstortions()之间的区别在于,后者不必接受通道参数,因此也只能接受两个参数。

用法:

float Imagick::getImageChannelDistortions( Imagick $reference,
             int $metric, int $channel = Imagick::CHANNEL_DEFAULT)

参数:此函数接受上述和以下所述的三个参数:


  • $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)
  • $channel:它指定对通道模式有效的通道常数。使用按位运算符组合十个以上的channeltype常量。通道常数的默认值为Imagick::CHANNEL_DEFAULT。

异常:该函数在错误时引发ImagickException。

返回值:此函数返回一个描述通道失真的双精度图。

以下示例程序旨在说明PHP中的Imagick::getImageChannelDistortions()函数:

程序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/20190916133223/diamond.png'); 
  
// Get the distortion with METRIC constant as imagick::METRIC_MEANABSOLUTEERROR 
$distortion = $imagick1->getImageChannelDistortions($imagick2, 1); 
  
echo $distortion; 
?>

输出:

23925

程序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->getImageChannelDistortions($imagick2, 1); 
  
echo $distortion; 
?>

输出:

0 because both of the images are same.

程序3:

<?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/20190916133633/gausian.png'); 
  
// Get the distortion with METRIC constant as imagick::METRIC_MEANSQUAREERROR 
$distortion = $imagick1->getImageChannelDistortions($imagick2, 2); 
  
echo $distortion; 
?>

输出:

0.048318723480804

参考: https://www.php.net/manual/en/imagick.getimagechanneldistortions.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getImageChannelDistortions() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。