python skimage 连通性区域检测方法

涉及到的函数为

import matplotlib.pyplot as plt

from skimage import measure, color

labels = measure.label(img4[:,:,0], connectivity=2)

dst = color.label2rgb(labels)

plt.imshow(dst)

labels为整个灰度图像的坐标的类别标签,值为[0, max_label], 一个连通区域为一个 lable .

以上这篇python skimage 连通性区域检测方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

以上是 python skimage 连通性区域检测方法 的全部内容, 来源链接: utcz.com/z/348210.html

回到顶部