用法:
skimage.filters.threshold_triangle(image, nbins=256)
根据三角形算法返回阈值。
- image:(N, M[, ..., P]) ndarray
灰度输入图像。
- nbins:int 可选
用于计算直方图的 bin 数量。对于整数数组,此值将被忽略。
- threshold:浮点数
上阈值。强度高于此值的所有像素都被假定为前景。
参数:
返回:
参考:
- 1
Zack, G. W., Rogers, W. E. and Latt, S. A., 1977, Automatic Measurement of Sister Chromatid Exchange Frequency, Journal of Histochemistry and Cytochemistry 25 (7), pp. 741-753 DOI:10.1177/25.7.70454
- 2
ImageJ AutoThresholder code, http://fiji.sc/wiki/index.php/Auto_Threshold
例子:
>>> from skimage.data import camera >>> image = camera() >>> thresh = threshold_triangle(image) >>> binary = image > thresh
相关用法
- Python skimage.filters.threshold_otsu用法及代码示例
- Python skimage.filters.threshold_li用法及代码示例
- Python skimage.filters.threshold_niblack用法及代码示例
- Python skimage.filters.threshold_local用法及代码示例
- Python skimage.filters.threshold_minimum用法及代码示例
- Python skimage.filters.threshold_isodata用法及代码示例
- Python skimage.filters.threshold_mean用法及代码示例
- Python skimage.filters.threshold_yen用法及代码示例
- Python skimage.filters.threshold_multiotsu用法及代码示例
- Python skimage.filters.threshold_sauvola用法及代码示例
- Python skimage.filters.try_all_threshold用法及代码示例
- Python skimage.filters.unsharp_mask用法及代码示例
- Python skimage.filters.rank.noise_filter用法及代码示例
- Python skimage.filters.gaussian用法及代码示例
- Python skimage.filters.rank.sum用法及代码示例
- Python skimage.filters.window用法及代码示例
- Python skimage.filters.gabor用法及代码示例
- Python skimage.filters.rank.autolevel用法及代码示例
- Python skimage.filters.rank.pop用法及代码示例
- Python skimage.filters.rank.mean用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.filters.threshold_triangle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。