用法:
skimage.filters.rank.threshold(image, footprint, out=None, mask=None, shift_x=False, shift_y=False, shift_z=False)
图像的局部阈值。
如果中心像素的灰度值大于局部平均值,则生成的二进制掩码为 True。
- image:([P,] M, N) ndarray (uint8, uint16)
输入图像。
- footprint:ndarray
邻域表示为 1 和 0 的 ndarray。
- out:([P,] M, N) 数组(与输入的 dtype 相同)
如果没有,则分配一个新数组。
- mask:ndarray(整数或浮点数),可选
定义包含在本地邻域中的图像的 (>0) 区域的掩码数组。如果没有,则使用完整的图像(默认)。
- shift_x, shift_y, shift_z:int
添加到封装中心点的偏移量。 Shift 受限于封装尺寸(中心必须在给定封装内)。
- out:([P,] M, N) ndarray (与输入图像相同的 dtype)
输出图像。
- selem:DEPRECATED
已弃用以支持足迹。
参数:
返回:
其他参数:
例子:
>>> from skimage.morphology import square, cube # Need to add 3D example >>> from skimage.filters.rank import threshold >>> img = 255 * np.array([[0, 0, 0, 0, 0], ... [0, 1, 1, 1, 0], ... [0, 1, 1, 1, 0], ... [0, 1, 1, 1, 0], ... [0, 0, 0, 0, 0]], dtype=np.uint8) >>> threshold(img, square(3)) array([[0, 0, 0, 0, 0], [0, 1, 1, 1, 0], [0, 1, 0, 1, 0], [0, 1, 1, 1, 0], [0, 0, 0, 0, 0]], dtype=uint8)
相关用法
- Python skimage.filters.rank.noise_filter用法及代码示例
- Python skimage.filters.rank.sum用法及代码示例
- Python skimage.filters.rank.autolevel用法及代码示例
- Python skimage.filters.rank.pop用法及代码示例
- Python skimage.filters.rank.mean用法及代码示例
- Python skimage.filters.rank.pop_bilateral用法及代码示例
- Python skimage.filters.rank.maximum用法及代码示例
- Python skimage.filters.rank.equalize用法及代码示例
- Python skimage.filters.rank.enhance_contrast用法及代码示例
- Python skimage.filters.rank.gradient用法及代码示例
- Python skimage.filters.rank.entropy用法及代码示例
- Python skimage.filters.rank.otsu用法及代码示例
- Python skimage.filters.rank.windowed_histogram用法及代码示例
- Python skimage.filters.rank.sum_bilateral用法及代码示例
- Python skimage.filters.rank.majority用法及代码示例
- Python skimage.filters.rank.geometric_mean用法及代码示例
- Python skimage.filters.rank.subtract_mean用法及代码示例
- Python skimage.filters.rank.minimum用法及代码示例
- Python skimage.filters.rank.mean_bilateral用法及代码示例
- Python skimage.filters.rank.modal用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.filters.rank.threshold。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。