scipy.ndimage.
极值#
- scipy.ndimage.extrema(input, labels=None, index=None)[源代码]#
计算数组在标签处的最小值和最大值,以及它们的位置。
- 参数:
- inputndarray
要处理的 N 维图像数据。
- labelsndarray,可选
输入中特征的标签。如果不是 None,则必须与 input 具有相同的形状。
- indexint 或 int 序列,可选
要包含在输出中的标签。 如果为 None(默认值),则使用非零的 labels 的所有值。
- 返回:
- minimums, maximumsint 或 ndarray
每个特征中的最小值和最大值。
- min_positions, max_positions元组或元组列表
每个元组给出相应最小值或最大值的 N 维坐标。
示例
>>> import numpy as np >>> a = np.array([[1, 2, 0, 0], ... [5, 3, 0, 4], ... [0, 0, 0, 7], ... [9, 3, 0, 0]]) >>> from scipy import ndimage >>> ndimage.extrema(a) (0, 9, (0, 2), (3, 0))
可以使用 labels 和 index 指定要处理的特征
>>> lbl, nlbl = ndimage.label(a) >>> ndimage.extrema(a, lbl, index=np.arange(1, nlbl+1)) (array([1, 4, 3]), array([5, 7, 9]), [(0, 0), (1, 3), (3, 1)], [(1, 0), (2, 3), (3, 0)])
如果没有给定索引,则处理非零的 labels
>>> ndimage.extrema(a, lbl) (1, 9, (0, 0), (3, 0))