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


Python cucim.skimage.filters.threshold_mean用法及代碼示例


用法:

cucim.skimage.filters.threshold_mean(image)

根據灰度值的平均值返回閾值。

參數

image(N, M[, ..., P]) ndarray

灰度輸入圖像。

返回

threshold浮點數

上閾值。強度高於此值的所有像素都被假定為前景。

參考

1

C. A. Glasbey, “An analysis of histogram-based thresholding algorithms,” CVGIP: Graphical Models and Image Processing, vol. 55, pp. 532-537, 1993. DOI:10.1006/cgip.1993.1040

例子

>>> from skimage.data import camera
>>> image = camera()
>>> thresh = threshold_mean(image)
>>> binary = image > thresh

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cucim.skimage.filters.threshold_mean。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。