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
相关用法
- PHP Imagick getImageChannelStatistics()用法及代码示例
- PHP Imagick getImageCompose()用法及代码示例
- PHP Imagick setImageClipMask()用法及代码示例
- PHP Imagick getImageChannelMean()用法及代码示例
- PHP Imagick getImageChannelExtrema()用法及代码示例
- PHP Imagick setImageAlphaChannel()用法及代码示例
- PHP Imagick getImageClipMask()用法及代码示例
- PHP Imagick haldClutImage()用法及代码示例
- PHP Imagick getImageBackgroundColor()用法及代码示例
- PHP Imagick setImageBorderColor()用法及代码示例
- PHP Imagick setImageBluePrimary()用法及代码示例
- PHP Imagick getImageBorderColor()用法及代码示例
- PHP Imagick setImageBackgroundColor()用法及代码示例
- PHP Imagick setImageCompose()用法及代码示例
- PHP Imagick setImageDelay()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getImageChannelDistortion() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。