PHP | imagick的segmentImage()函数
Imagick::segmentImage()函数是PHP中的一个内置函数,用于分割图像。
句法:
bool Imagick::segmentImage(int $COLORSPACE,
float $cluster_threshold, float $smooth_threshold,
bool $verbose = FALSE )
参数:该函数接受上面提到的四个参数,如下所述:
- $COLORSPACE:它指定对应于COLORSPACE常量之一的整数值。您还可以传递直接常量,例如imagick::COLORSPACE_RGB 。
- $cluster_threshold:它指定一个百分比,描述在被认为有效之前,hexedra 中包含的最小像素数。
- $smooth_threshold:指定是否从直方图中消除噪声。
- $verbose(可选):指定是否输出识别类的详细信息。默认值为假
下面给出了所有 COLORSPACE 常量的列表:
- imagick::COLORSPACE_UNDEFINED (0)
- imagick::COLORSPACE_RGB (1)
- 想像::COLORSPACE_GRAY (2)
- imagick::COLORSPACE_TRANSPARENT (3)
- 想像::COLORSPACE_OHTA (4)
- imagick::COLORSPACE_LAB (5)
- 想像::COLORSPACE_XYZ (6)
- imagick::COLORSPACE_YCBCR (7)
- 想像::COLORSPACE_YCC (8)
- imagick::COLORSPACE_YIQ (9)
- 想像::COLORSPACE_YPBPR (10)
- 想像::COLORSPACE_YUV (11)
- 想像::COLORSPACE_CMYK (12)
- imagick::COLORSPACE_SRGB (13)
- 想像::COLORSPACE_HSB (14)
- 想像::COLORSPACE_HSL (15)
- 想像::COLORSPACE_HWB (16)
- 想像::COLORSPACE_REC601LUMA (17)
- 想像::COLORSPACE_REC709LUMA (19)
- imagick::COLORSPACE_LOG (21)
- 想像::COLORSPACE_CMY (22)
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的Imagick::segmentImage()函数:
方案一:
segmentImage(1, 0, 12);
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
方案二:
segmentImage(2, 5, 30);
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.segmentimage。 PHP