如何知道在findContour

时间:2019-07-10 09:24:05

标签: python opencv opencv-contour image-thresholding

我正在使用OpenCV进行手检测。但是在尝试绘制脱粒图像的轮廓时,我很挣扎。 findContour将始终尝试寻找白色区域作为轮廓。

所以基本上在大多数情况下都可以使用,但是有时候我的脱粒图像看起来像这样:

_, threshed = cv2.threshold(gray, 127, 255, cv2.THRESH_BINARY|cv2.THRESH_OTSU) Base enter image description here

因此,要使其正常工作,我只需要更改阈值类型cv2.THRESH_BINARY_INV

_, threshed = cv2.threshold(gray, 127, 255, cv2.THRESH_BINARY_INV|cv2.THRESH_OTSU)

Reverse DrawContour

而且效果很好。

我的问题是如何确定何时需要逆转阈值?我是否需要始终在两个脱粒图像上找到轮廓,然后比较结果(在这种情况下如何?)?或者有一种方法可以知道轮廓线是否不会完全丢失。

编辑:有一种方法可以100%确保轮廓看起来像一只手?

编辑2 :所以我忘了提一下,我正在尝试使用此method检测指尖和缺陷,因此我需要缺陷,而对于第一个经过脱粒处理的图像,我无法找到它们,因为它反转了。看到第一轮廓image上的蓝点。

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以编写一种实用程序方法来检测边界上最主要的颜色,然后确定逻辑,就像是否要反转图像一样,因此流程可能类似于:

  1. 使用OSTU二值化方法。
  2. 将阈值图像传递给实用方法get_most_dominant_border_color并获得主色。
  3. 如果边框颜色为WHITE,则应使用cv2.bitwise_not反转图像,否则只能保持这种方式。

get_most_dominant_border_color可以定义为:

from collections import Counter

def get_most_dominant_border_color(img):
    # Get the top row
    row_1 = img[0, :]
    # Get the left-most column
    col_1 = img[:, 0]
    # Get the bottom row
    row_2 = img[-1, :]
    # Get the right-most column
    col_2 = img[:, -1]

    combined_li = row_1.tolist() + row_2.tolist() + col_1.tolist() + col_2.tolist()

    color_counter = Counter(combined_li)

    return max(color_counter.keys(), key=lambda x:color_counter.values())