gpt4 book ai didi

python - cv2.connectedComponents 无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-03 22:22:01 33 4
gpt4 key购买 nike

我想使用函数 cv2.connectedComponents 连接二进制图像上的组件,如下所示...

image .

一切正常,除了输出的标签数组。根据已识别的组件,此数组中只有零,而不是指示的序号。

import cv2
import numpy as np

img = cv2.imread('eGaIy.jpg', 0)
img = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY)[1] # ensure binary
ret, labels = cv2.connectedComponents(img)

# Map component labels to hue val
label_hue = np.uint8(179*labels/np.max(labels))
blank_ch = 255*np.ones_like(label_hue)
labeled_img = cv2.merge([label_hue, blank_ch, blank_ch])

# cvt to BGR for display
labeled_img = cv2.cvtColor(labeled_img, cv2.COLOR_HSV2BGR)

# set bg label to black
labeled_img[label_hue==0] = 0

cv2.imshow('labeled.png', labeled_img)
cv2.waitKey()

输出标签 --> labels.shape: (256L, 250L)

[[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]
...,
[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]]

最佳答案

对我有用:

enter image description here enter image description here


而且你应该注意函数只找到非零的分量。在源图像中,组件是边缘。返回的是与源大小相同的标记图像。

输出

[[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]
...,
[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]
[0 0 0 ..., 0 0 0]]

只表示4个角区域(3x3)全为零,但并不代表所有元素都为零。


如果在调用 cv2.connectedComponents 之后调用它:

print(set(labels.reshape(-1).tolist()))

您将获得:

{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}

这意味着存在 14 个组件(边缘)和 1 个背景(0)。

关于python - cv2.connectedComponents 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48280366/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com