本文簡要介紹 python 語言中 scipy.ndimage.binary_fill_holes
的用法。
用法:
scipy.ndimage.binary_fill_holes(input, structure=None, output=None, origin=0)#
填充二進製對象中的孔。
- input: array_like
N-D 需要填充孔的二進製數組
- structure: 數組,可選
計算中使用的結構元素; large-size 元素使計算速度更快,但可能會遺漏被薄區域與背景隔開的孔。默認元素(方形連通性等於 1)產生直觀的結果,其中輸入中的所有孔都已被填充。
- output: ndarray,可選
與輸入形狀相同的數組,其中放置輸出。默認情況下,會創建一個新數組。
- origin: int,整數元組,可選
結構元素的位置。
- out: ndarray
已填充孔洞的初始圖像輸入的轉換。
參數 ::
返回 ::
注意:
此函數中使用的算法包括使用二進製膨脹從圖像的外邊界侵入輸入中形狀的互補性。孔不與邊界相連,因此不會被侵入。結果是入侵區域的互補子集。
參考:
例子:
>>> from scipy import ndimage >>> import numpy as np >>> a = np.zeros((5, 5), dtype=int) >>> a[1:4, 1:4] = 1 >>> a[2,2] = 0 >>> a array([[0, 0, 0, 0, 0], [0, 1, 1, 1, 0], [0, 1, 0, 1, 0], [0, 1, 1, 1, 0], [0, 0, 0, 0, 0]]) >>> ndimage.binary_fill_holes(a).astype(int) array([[0, 0, 0, 0, 0], [0, 1, 1, 1, 0], [0, 1, 1, 1, 0], [0, 1, 1, 1, 0], [0, 0, 0, 0, 0]]) >>> # Too big structuring element >>> ndimage.binary_fill_holes(a, structure=np.ones((5,5))).astype(int) array([[0, 0, 0, 0, 0], [0, 1, 1, 1, 0], [0, 1, 0, 1, 0], [0, 1, 1, 1, 0], [0, 0, 0, 0, 0]])
相關用法
- Python SciPy ndimage.binary_dilation用法及代碼示例
- Python SciPy ndimage.binary_opening用法及代碼示例
- Python SciPy ndimage.binary_closing用法及代碼示例
- Python SciPy ndimage.binary_hit_or_miss用法及代碼示例
- Python SciPy ndimage.binary_erosion用法及代碼示例
- Python SciPy ndimage.binary_propagation用法及代碼示例
- Python SciPy ndimage.black_tophat用法及代碼示例
- Python SciPy ndimage.correlate用法及代碼示例
- Python SciPy ndimage.morphological_gradient用法及代碼示例
- Python SciPy ndimage.variance用法及代碼示例
- Python SciPy ndimage.correlate1d用法及代碼示例
- 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.generic_laplace用法及代碼示例
- Python SciPy ndimage.generate_binary_structure用法及代碼示例
- Python SciPy ndimage.maximum_filter用法及代碼示例
- Python SciPy ndimage.minimum_position用法及代碼示例
- Python SciPy ndimage.labeled_comprehension用法及代碼示例
- Python SciPy ndimage.grey_erosion用法及代碼示例
- Python SciPy ndimage.spline_filter用法及代碼示例
- Python SciPy ndimage.shift用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.ndimage.binary_fill_holes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。