本文简要介绍 python 语言中 scipy.ndimage.minimum_position
的用法。
用法:
scipy.ndimage.minimum_position(input, labels=None, index=None)#
在标签处查找数组值的最小值的位置。
- input: array_like
Array_like 值。
- labels: 数组,可选
一个整数数组,标记不同区域,在这些区域上计算输入最小值的位置。标签必须与输入具有相同的形状。如果未指定标签,则返回整个数组中第一个最小值的位置。
标签参数仅在指定索引时才有效。
- index: 数组,可选
查找最小值位置时考虑的区域标签列表。如果 index 是无,则
first
所有元素的最小值标签返回非零。index 参数仅在指定标签时有效。
- output: 整数元组列表
整数元组或整数元组列表,它们指定输入最小值在由标签确定的区域上的位置,并且其索引在索引中。
如果未指定索引或标签,则返回一个整数元组,指定输入的第一个最小值的位置。
参数 ::
返回 ::
例子:
>>> import numpy as np >>> a = np.array([[10, 20, 30], ... [40, 80, 100], ... [1, 100, 200]]) >>> b = np.array([[1, 2, 0, 1], ... [5, 3, 0, 4], ... [0, 0, 0, 7], ... [9, 3, 0, 0]])
>>> from scipy import ndimage
>>> ndimage.minimum_position(a) (2, 0) >>> ndimage.minimum_position(b) (0, 2)
可以使用标签和索引指定要处理的特征:
>>> label, pos = ndimage.label(a) >>> ndimage.minimum_position(a, label, index=np.arange(1, pos+1)) [(2, 0)]
>>> label, pos = ndimage.label(b) >>> ndimage.minimum_position(b, label, index=np.arange(1, pos+1)) [(0, 0), (0, 3), (3, 1)]
相关用法
- Python SciPy ndimage.minimum_filter用法及代码示例
- Python SciPy ndimage.minimum_filter1d用法及代码示例
- Python SciPy ndimage.minimum用法及代码示例
- Python SciPy ndimage.morphological_gradient用法及代码示例
- Python SciPy ndimage.maximum_filter1d用法及代码示例
- Python SciPy ndimage.map_coordinates()用法及代码示例
- Python SciPy ndimage.maximum_filter用法及代码示例
- Python SciPy ndimage.median用法及代码示例
- Python SciPy ndimage.maximum用法及代码示例
- Python SciPy ndimage.map_coordinates用法及代码示例
- Python SciPy ndimage.mean用法及代码示例
- Python SciPy ndimage.maximum_position用法及代码示例
- Python SciPy ndimage.median_filter用法及代码示例
- Python SciPy ndimage.correlate用法及代码示例
- 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.iterate_structure用法及代码示例
- Python SciPy ndimage.generic_laplace用法及代码示例
- Python SciPy ndimage.generate_binary_structure用法及代码示例
- Python SciPy ndimage.binary_opening用法及代码示例
- Python SciPy ndimage.binary_fill_holes用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.ndimage.minimum_position。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。