亲宝软件园·资讯

展开

python skimage 连通性区域检测 python skimage 连通性区域检测方法

oneTaken 人气:2

涉及到的函数为

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 连通性区域检测方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

加载全部内容

相关教程
猜你喜欢
用户评论