如何检测阈值图像中的黑色区域

时间:2019-01-17 16:31:53

标签: python image-processing

如何检测阈值图像中的黑色区域?和

如何绘制此黑色区域的轮廓?

enter image description here[1]

1 个答案:

答案 0 :(得分:3)

首先,最好在代码减价中将代码作为文本提供(尽量避免代码的屏幕截图)。

关于您的问题,此OpenCV tutorial对此进行了详尽的解释。值得注意的是,您首先需要使用cv2.findContours函数查找轮廓,然后使用cv2.drawContours绘制轮廓,如下所示:

import numpy as np
import cv2
im = cv2.imread('test.jpg')
imgray = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)
ret, thresh = cv2.threshold(imgray, 127, 255, 0)
im2, contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)

其中thresh是您的阈值图像。