当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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 (Optional):它指定是否输出有关已识别类的详细信息。默认值为假

下面列出了所有COLORSPACE常数:

  • imagick::COLORSPACE_UNDEFINED(0)
  • imagick::COLORSPACE_RGB(1)
  • imagick::COLORSPACE_GRAY(2)
  • imagick::COLORSPACE_TRANSPARENT(3)
  • imagick::COLORSPACE_OHTA(4)
  • imagick::COLORSPACE_LAB(5)
  • imagick::COLORSPACE_XYZ(6)
  • imagick::COLORSPACE_YCBCR(7)
  • imagick::COLORSPACE_YCC(8)
  • imagick::COLORSPACE_YIQ(9)
  • imagick::COLORSPACE_YPBPR(10)
  • imagick::COLORSPACE_YUV(11)
  • imagick::COLORSPACE_CMYK(12)
  • imagick::COLORSPACE_SRGB(13)
  • imagick::COLORSPACE_HSB(14)
  • imagick::COLORSPACE_HSL(15)
  • imagick::COLORSPACE_HWB(16)
  • imagick::COLORSPACE_REC601LUMA(17)
  • imagick::COLORSPACE_REC709LUMA(19)
  • imagick::COLORSPACE_LOG(21)
  • imagick::COLORSPACE_CMY(22)

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

异常:该函数在错误时引发ImagickException。

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

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Segment the image with colorspace as imagick::COLORSPACE_RGB 
$imagick->segmentImage(1, 0, 12); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

输出:

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Segment the image with colorspace as imagick::COLORSPACE_GRAY 
$imagick->segmentImage(2, 5, 30); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

输出:

参考: https://www.php.net/manual/en/imagick.segmentimage.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick segmentImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。