灰度图像上的颜色轮廓

时间:2020-09-22 11:05:37

标签: python contour cv2

我编写了一个简单的代码来查找图像中对象的轮廓。

    img = cv2.imread(file_path, cv2.IMREAD_GRAYSCALE)

    blur = cv2.GaussianBlur(img_enhanced,(25,25),0) # apply blur for contour
    ret, binary = cv2.threshold(blur,1,255,cv2.THRESH_BINARY) # apply threshold to blur image

    contours, hierarchy = cv2.findContours(binary, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) # find countour
    obj_index = contours.index(max(contours, key=len)) # find index of largest object
    contour_img = cv2.drawContours(img, contours, obj_index, (0,255,0), 3) # draw coutour on original image

    plt.imshow(contour_img)
    plt.show()

原始图像已经是灰度图像,但无论如何我在导入图像时都应用了cv2.IMREAD_GRAYSCALE。

我想如果我使用以下语法在“绘制”轮廓时应用灰度图像,

contour_img = cv2.drawContours(img, contours, obj_index, (0,255,0), 3)

我可以得到带有彩色轮廓的灰度图像,但是它显示 奇怪的彩色图像。

如何在灰度图像上绘制彩色轮廓线?

预先感谢

图像样本:黑色背景和白色物体

enter image description here

1 个答案:

答案 0 :(得分:1)

根据我的评论:

尝试类似的方法,并告诉我是否可行

编辑:我更改了阈值范围。 cv2.threshold(blur,25,255,cv2.THRESH_BINARY)

img = cv2.imread(file_path, 1) 
print(img.shape) # this should give you (img_h, img_w, 3)
img2 = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

blur = cv2.GaussianBlur(img2,(25,25),0) # apply blur for contour
ret, binary = cv2.threshold(blur,25,255,cv2.THRESH_BINARY) # apply threshold to blur image

contours, hierarchy = cv2.findContours(binary, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) # find countour
obj_index = contours.index(max(contours, key=len)) # find index of largest object
contour_img = cv2.drawContours(img, contours, obj_index, (0,255,0), 3) # draw coutour on original image

plt.imshow(contour_img, cmap='gray')
plt.show()

enter image description here


plt.hist(blur.ravel(), bins=50)

enter image description here