本文簡要介紹 python 語言中 scipy.ndimage.mean
的用法。
用法:
scipy.ndimage.mean(input, labels=None, index=None)#
計算標簽處數組值的平均值。
- input: array_like
用於計算不同區域上元素平均值的數組。
- labels: 數組,可選
相同形狀的標簽數組,或可廣播到與輸入相同的形狀。共享相同標簽的所有元素形成一個區域,在該區域上計算元素的平均值。
- index: int 或整數序列,可選
要計算平均值的對象的標簽。默認為無,在這種情況下,計算標簽大於 0 的所有值的平均值。
- out: 列表
與索引長度相同的序列,不同區域的平均值由索引中的標簽標記。
參數 ::
返回 ::
例子:
>>> from scipy import ndimage >>> import numpy as np >>> a = np.arange(25).reshape((5,5)) >>> labels = np.zeros_like(a) >>> labels[3:5,3:5] = 1 >>> index = np.unique(labels) >>> labels array([[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 1, 1], [0, 0, 0, 1, 1]]) >>> index array([0, 1]) >>> ndimage.mean(a, labels=labels, index=index) [10.285714285714286, 21.0]
相關用法
- Python SciPy ndimage.median用法及代碼示例
- Python SciPy ndimage.median_filter用法及代碼示例
- Python SciPy ndimage.morphological_gradient用法及代碼示例
- Python SciPy ndimage.maximum_filter1d用法及代碼示例
- Python SciPy ndimage.map_coordinates()用法及代碼示例
- Python SciPy ndimage.maximum_filter用法及代碼示例
- Python SciPy ndimage.minimum_position用法及代碼示例
- Python SciPy ndimage.minimum用法及代碼示例
- Python SciPy ndimage.maximum用法及代碼示例
- Python SciPy ndimage.map_coordinates用法及代碼示例
- Python SciPy ndimage.maximum_position用法及代碼示例
- Python SciPy ndimage.minimum_filter用法及代碼示例
- Python SciPy ndimage.minimum_filter1d用法及代碼示例
- 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.mean。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。