本文简要介绍 python 语言中 scipy.ndimage.binary_fill_holes
的用法。
用法:
scipy.ndimage.binary_fill_holes(input, structure=None, output=None, origin=0)#
填充二进制对象中的孔。
- input: array_like
N-D 需要填充孔的二进制数组
- structure: 数组,可选
计算中使用的结构元素; large-size 元素使计算速度更快,但可能会遗漏被薄区域与背景隔开的孔。默认元素(方形连通性等于 1)产生直观的结果,其中输入中的所有孔都已被填充。
- output: ndarray,可选
与输入形状相同的数组,其中放置输出。默认情况下,会创建一个新数组。
- origin: int,整数元组,可选
结构元素的位置。
- out: ndarray
已填充孔洞的初始图像输入的转换。
参数 ::
返回 ::
注意:
此函数中使用的算法包括使用二进制膨胀从图像的外边界侵入输入中形状的互补性。孔不与边界相连,因此不会被侵入。结果是入侵区域的互补子集。
参考:
例子:
>>> from scipy import ndimage >>> import numpy as np >>> a = np.zeros((5, 5), dtype=int) >>> a[1:4, 1:4] = 1 >>> a[2,2] = 0 >>> a 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]]) >>> ndimage.binary_fill_holes(a).astype(int) 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]]) >>> # Too big structuring element >>> ndimage.binary_fill_holes(a, structure=np.ones((5,5))).astype(int) 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]])
相关用法
- Python SciPy ndimage.binary_dilation用法及代码示例
- Python SciPy ndimage.binary_opening用法及代码示例
- Python SciPy ndimage.binary_closing用法及代码示例
- Python SciPy ndimage.binary_hit_or_miss用法及代码示例
- Python SciPy ndimage.binary_erosion用法及代码示例
- Python SciPy ndimage.binary_propagation用法及代码示例
- Python SciPy ndimage.black_tophat用法及代码示例
- Python SciPy ndimage.correlate用法及代码示例
- Python SciPy ndimage.morphological_gradient用法及代码示例
- Python SciPy ndimage.variance用法及代码示例
- Python SciPy ndimage.correlate1d用法及代码示例
- Python SciPy ndimage.distance_transform_bf用法及代码示例
- Python SciPy ndimage.find_objects用法及代码示例
- Python SciPy ndimage.label用法及代码示例
- Python SciPy ndimage.maximum_filter1d用法及代码示例
- Python SciPy ndimage.iterate_structure用法及代码示例
- Python SciPy ndimage.map_coordinates()用法及代码示例
- Python SciPy ndimage.generic_laplace用法及代码示例
- Python SciPy ndimage.generate_binary_structure用法及代码示例
- Python SciPy ndimage.maximum_filter用法及代码示例
- Python SciPy ndimage.minimum_position用法及代码示例
- Python SciPy ndimage.labeled_comprehension用法及代码示例
- Python SciPy ndimage.grey_erosion用法及代码示例
- Python SciPy ndimage.spline_filter用法及代码示例
- Python SciPy ndimage.shift用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.ndimage.binary_fill_holes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。