Imagick::adaptiveThresholdImage

(PECL imagick 2, PECL imagick 3)

Imagick::adaptiveThresholdImage根据强度范围为每个像素选择阈值

描述

public Imagick::adaptiveThresholdImage(int $width, int $height, int $offset): bool

根据其局部邻域中的强度值范围为每个像素选择单独的阈值。这允许对全局强度直方图中没有明显峰值的图像进行阈值化。

参数

width

局部邻域的宽度。

height

局部邻域的高度。

offset

平均偏移量

返回值

成功时返回 true

示例

示例 #1 Imagick::adaptiveThresholdImage()

<?php
function adaptiveThresholdImage($imagePath, $width, $height, $adaptiveOffset) {
$imagick = new \Imagick(realpath($imagePath));
$adaptiveOffsetQuantum = intval($adaptiveOffset * \Imagick::getQuantum());
$imagick->adaptiveThresholdImage($width, $height, $adaptiveOffsetQuantum);
header("Content-Type: image/jpg");
echo
$imagick->getImageBlob();
}

?>

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top