scipy库的label函数|标记图像连通域

2023-12-19 22:51:21

邻域

???????

连通

4 邻域就是上下左右找有没有连着的 1

8 邻域就是上下左右 + 4 个斜线找有没有连着的 1?

label函数用法

# label函数返回两个参数
# labeled_array:标记后的数组
# num_features:连通区域的数量

from scipy.ndimage import label
import numpy as np

a = np.array([[0,0,1,1,0,0],
              [0,0,0,1,0,0],
              [1,1,0,0,1,0],
              [0,0,0,1,0,0]])
labeled_array, num_features = label(a)

label函数标记连通区域

默认以 4 邻域划分区域

from scipy.ndimage import label
import numpy as np

a = np.array([[0,0,1,1,0,0],
              [0,0,0,1,0,0],
              [1,1,0,0,1,0],
              [0,0,0,1,0,0]])
labeled_array, num_features = label(a)
print(labeled_array)
'''
[[0 0 1 1 0 0]
 [0 0 0 1 0 0]
 [2 2 0 0 3 0]
 [0 0 0 4 0 0]]
'''
print(num_features)    # 4

修改邻域范围

# 默认是4邻域,即 stru=np.ones([2,2])
stru = np.ones([3,3]) # 修改为8邻域
labeled_array, num_features = label(a, stru)
print(labeled_array)
‘'‘
[[0 0 1 1 0 0]
 [0 0 0 1 0 0]
 [2 2 0 0 1 0]
 [0 0 0 1 0 0]]
'‘'

参考

Scipy(1)—— scipy.ndimage.label-CSDN博客

Python实现统计图像连通域的示例详解 - 老K博客 - 一个源码和技术分享的博客

文章来源:https://blog.csdn.net/qq_43846794/article/details/135090640
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。