本文简要介绍 python 语言中 scipy.ndimage.grey_opening
的用法。
用法:
scipy.ndimage.grey_opening(input, size=None, footprint=None, structure=None, output=None, mode='reflect', cval=0.0, origin=0)#
多维灰度开放。
灰度开口由灰度侵蚀和灰度膨胀的连续组成。
- input: array_like
要计算灰度开口的数组。
- size: 整数元组
用于灰度开口的平坦且完整的结构元素的形状。如果提供了足迹或结构,则可选。
- footprint: 整数数组,可选
用于灰度开口的平面结构元素的非无限元素的位置。
- structure: 整数数组,可选
用于灰度开口的结构元素。结构可以是非平面结构元素。
- output: 数组,可选
可以提供用于存储开口输出的阵列。
- mode: {‘reflect’, ‘constant’, ‘nearest’, ‘mirror’, ‘wrap’},可选
mode 参数确定如何处理数组边界,其中 cval 是 mode 等于 ‘constant’ 时的值。默认为‘reflect’
- cval: 标量,可选
如果模式为‘constant’,则填充过去输入边的值。默认值为 0.0。
- origin: 标量,可选
origin 参数控制过滤器的位置。默认 0
- grey_opening: ndarray
带结构的输入灰度打开的结果。
参数 ::
返回 ::
注意:
具有平面结构元素的灰度开口的作用相当于平滑高局部最大值,而二进制开口会擦除小对象。
参考:
例子:
>>> from scipy import ndimage >>> import numpy as np >>> a = np.arange(36).reshape((6,6)) >>> a[3, 3] = 50 >>> a array([[ 0, 1, 2, 3, 4, 5], [ 6, 7, 8, 9, 10, 11], [12, 13, 14, 15, 16, 17], [18, 19, 20, 50, 22, 23], [24, 25, 26, 27, 28, 29], [30, 31, 32, 33, 34, 35]]) >>> ndimage.grey_opening(a, size=(3,3)) array([[ 0, 1, 2, 3, 4, 4], [ 6, 7, 8, 9, 10, 10], [12, 13, 14, 15, 16, 16], [18, 19, 20, 22, 22, 22], [24, 25, 26, 27, 28, 28], [24, 25, 26, 27, 28, 28]]) >>> # Note that the local maximum a[3,3] has disappeared
相关用法
- Python SciPy ndimage.grey_erosion用法及代码示例
- Python SciPy ndimage.grey_closing用法及代码示例
- Python SciPy ndimage.grey_dilation用法及代码示例
- Python SciPy ndimage.generic_laplace用法及代码示例
- Python SciPy ndimage.generate_binary_structure用法及代码示例
- Python SciPy ndimage.gaussian_laplace用法及代码示例
- Python SciPy ndimage.generic_filter1d用法及代码示例
- Python SciPy ndimage.generic_gradient_magnitude用法及代码示例
- Python SciPy ndimage.generic_filter用法及代码示例
- Python SciPy ndimage.gaussian_filter1d用法及代码示例
- Python SciPy ndimage.gaussian_filter用法及代码示例
- Python SciPy ndimage.gaussian_gradient_magnitude用法及代码示例
- Python SciPy ndimage.geometric_transform用法及代码示例
- Python SciPy ndimage.correlate用法及代码示例
- Python SciPy ndimage.morphological_gradient用法及代码示例
- Python SciPy ndimage.variance用法及代码示例
- Python SciPy ndimage.correlate1d用法及代码示例
- Python SciPy ndimage.binary_dilation用法及代码示例
- 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.binary_opening用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.ndimage.grey_opening。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。