(PECL imagick 2, PECL imagick 3)
Imagick::adaptiveThresholdImage — 根据强度范围为每个像素选择阈值
根据其局部邻域中的强度值范围为每个像素选择单独的阈值。这允许对全局强度直方图中没有明显峰值的图像进行阈值化。
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();
}
?>