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
相关用法
- PHP Imagick distortImage()用法及代码示例
- PHP Imagick readImage()用法及代码示例
- PHP Imagick readImageFile()用法及代码示例
- PHP Imagick remapImage()用法及代码示例
- PHP Imagick getCopyright()用法及代码示例
- PHP Imagick extentImage()用法及代码示例
- PHP Imagick readImages()用法及代码示例
- PHP Imagick separateImageChannel()用法及代码示例
- PHP Imagick sepiaToneImage()用法及代码示例
- PHP Imagick convolveImage()用法及代码示例
- PHP Imagick despeckleImage()用法及代码示例
- PHP Imagick setColorspace()用法及代码示例
- PHP Imagick enhanceImage()用法及代码示例
- PHP Imagick encipherImage()用法及代码示例
- PHP Imagick embossImage()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getImageDistortion() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。