當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。