本文簡要介紹 python 語言中 scipy.ndimage.maximum_position
的用法。
用法:
scipy.ndimage.maximum_position(input, labels=None, index=None)#
在標簽處查找數組值的最大值的位置。
對於標簽指定的每個區域,返回輸入的最大值在該區域內的位置。
- input: array_like
Array_like 值。
- labels: 數組,可選
一個整數數組,標記不同區域,在這些區域上計算輸入最大值的位置。標簽必須與輸入具有相同的形狀。如果未指定標簽,則返回整個數組中第一個最大值的位置。
標簽參數僅在指定索引時才有效。
- index: 數組,可選
查找最大值位置時考慮的區域標簽列表。如果 index 為 None,則返回標簽非零的所有元素的第一個最大值。
index 參數僅在指定標簽時有效。
- output: 整數元組列表
整數元組列表,指定輸入的最大值在由標簽確定的區域上的位置,其索引在索引中。
如果 index 或者標簽未指定,則返回一個整數元組,指定該位置
first
的最大值輸入.
參數 ::
返回 ::
例子:
>>> from scipy import ndimage >>> import numpy as np >>> a = np.array([[1, 2, 0, 0], ... [5, 3, 0, 4], ... [0, 0, 0, 7], ... [9, 3, 0, 0]]) >>> ndimage.maximum_position(a) (3, 0)
可以使用標簽和索引指定要處理的特征:
>>> lbl = np.array([[0, 1, 2, 3], ... [0, 1, 2, 3], ... [0, 1, 2, 3], ... [0, 1, 2, 3]]) >>> ndimage.maximum_position(a, lbl, 1) (1, 1)
如果沒有給出索引,則處理非零標簽:
>>> ndimage.maximum_position(a, lbl) (2, 3)
如果沒有最大值,則返回第一個元素的位置:
>>> ndimage.maximum_position(a, lbl, 2) (0, 2)
相關用法
- Python SciPy ndimage.maximum_filter1d用法及代碼示例
- Python SciPy ndimage.maximum_filter用法及代碼示例
- Python SciPy ndimage.maximum用法及代碼示例
- Python SciPy ndimage.map_coordinates()用法及代碼示例
- Python SciPy ndimage.map_coordinates用法及代碼示例
- Python SciPy ndimage.morphological_gradient用法及代碼示例
- Python SciPy ndimage.minimum_position用法及代碼示例
- Python SciPy ndimage.minimum用法及代碼示例
- Python SciPy ndimage.median用法及代碼示例
- Python SciPy ndimage.mean用法及代碼示例
- Python SciPy ndimage.minimum_filter用法及代碼示例
- Python SciPy ndimage.minimum_filter1d用法及代碼示例
- 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.maximum_position。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。