当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy ndimage.iterate_structure用法及代码示例


本文简要介绍 python 语言中 scipy.ndimage.iterate_structure 的用法。

用法:

scipy.ndimage.iterate_structure(structure, iterations, origin=None)#

通过自身膨胀来迭代结构。

参数

structure array_like

结构化元素(例如,布尔数组),将与自身一起扩展。

iterations int

对结构本身执行的膨胀次数

origin 可选的

如果 origin 为 None,则仅返回迭代结构。如果不是,则返回迭代结构的元组和修改后的原点。

返回

iterate_structure 布尔数组

通过自身膨胀结构(迭代 - 1)次获得的新结构元素。

例子

>>> from scipy import ndimage
>>> struct = ndimage.generate_binary_structure(2, 1)
>>> struct.astype(int)
array([[0, 1, 0],
       [1, 1, 1],
       [0, 1, 0]])
>>> ndimage.iterate_structure(struct, 2).astype(int)
array([[0, 0, 1, 0, 0],
       [0, 1, 1, 1, 0],
       [1, 1, 1, 1, 1],
       [0, 1, 1, 1, 0],
       [0, 0, 1, 0, 0]])
>>> ndimage.iterate_structure(struct, 3).astype(int)
array([[0, 0, 0, 1, 0, 0, 0],
       [0, 0, 1, 1, 1, 0, 0],
       [0, 1, 1, 1, 1, 1, 0],
       [1, 1, 1, 1, 1, 1, 1],
       [0, 1, 1, 1, 1, 1, 0],
       [0, 0, 1, 1, 1, 0, 0],
       [0, 0, 0, 1, 0, 0, 0]])

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.ndimage.iterate_structure。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。