📜  PHP | imagick的adaptiveThresholdImage()函数

📅  最后修改于: 2022-05-13 01:56:27.535000             🧑  作者: Mango

PHP | imagick的adaptiveThresholdImage()函数

Imagick::adaptiveThresholdImage()函数是PHP中的一个内置函数,用于根据其局部邻域的强度值为每个像素选择一个阈值。此函数允许对全局强度直方图不包含明显峰值的图像进行阈值处理。

句法:

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

参数:此函数接受三个参数,如上所述,如下所述:

  • $width:该参数用于设置局部邻域的宽度。
  • $height:该参数用于设置本地邻域的高度。
  • $offset:此参数用于设置平均偏移量。

返回值:此函数在成功时返回 TRUE。

下面的程序说明了PHP中的Imagick::adaptiveThresholdImage()函数:

原图:
原始图像

程序:

adaptiveThresholdImage(1024, 73, 0.625);
  
echo $image;
?>

输出:
自适应阈值图像

参考: http: PHP。 PHP