我试图在此图像上绘制具有不同颜色的轮廓(https://docs.opencv.org/3.4.0/d4/d73/tutorial_py_contours_begin.html),但是轮廓总是变成白色。这是下面的代码
import cv2
import numpy as np
img = cv2.imread(r'C:\Users\Ron Shporer\Desktop\TESTSAVES\TESTLines.png',0)
ret,thresh = cv2.threshold(img,127,255,0)
im2,contours,hierarchy = cv2.findContours(thresh, 1, 2)
cnt = contours[0]
cv2.drawContours(img, contours, -1, (255,0,0), 5)
cv2.namedWindow('img', cv2.WINDOW_NORMAL)
cv2.imshow('img',img)
cv2.waitKey(0)
cv2.destroyAllWindows()`
以下图片:
答案 0 :(得分:3)
解决方案很简单。您可以将输入图像转换为3通道图像,然后在转换后的彩色图像上绘制轮廓。
代码将如下所示:
import cv2
import numpy as np
img = cv2.imread(r'C:\Users\Ron Shporer\Desktop\TESTSAVES\TESTLines.png',0)
ret,thresh = cv2.threshold(img,127,255,0)
im2,contours,hierarchy = cv2.findContours(thresh, 1, 2)
cnt = contours[0]
result_img = cv2.cvtColor(frame, cv2.COLOR_GRAY2RGB)
cv2.drawContours(result_img, contours, -1, (255,0,0), 5)
cv2.namedWindow('img', cv2.WINDOW_NORMAL)
cv2.imshow('img', result_img)
cv2.waitKey(0)
cv2.destroyAllWindows()
答案 1 :(得分:0)
尝试
import cv2
import numpy as np
img = cv2.imread(r'C:\Users\Ron Shporer\Desktop\TESTSAVES\TESTLines.png',0)
img_color = cv2.imread(r'C:\Users\Ron Shporer\Desktop\TESTSAVES\TESTLines.png')
ret,thresh = cv2.threshold(img,127,255,0)
im2,contours,hierarchy = cv2.findContours(thresh, 1, 2)
cnt = contours[0]
cv2.drawContours(img_color , contours, -1, (255,0,0), 5)
cv2.namedWindow('img_color ', cv2.WINDOW_NORMAL)
cv2.imshow('img_color ',img_color )
cv2.waitKey(0)
cv2.destroyAllWindows()