我正在使用 openCv 和 python,我正在处理结构分析和形状描述符。我找到了这个博客: http: //opencvpython.blogspot.it/2012/06/contours-2-brotherhood.html 这非常有帮助,我尝试使用黑白图像来绘制边界矩形并且它有效。但是现在我从图像中提取,例如黄色,然后我想在上面绘制一个边界矩形。问题是黑白图像不均匀,它有一些噪音,并且代码无法识别整个形状。
这是代码:
import numpy as np
import cv2
im = cv2.imread('shot.bmp')
hsv_img = cv2.cvtColor(im, cv2.COLOR_BGR2HSV)
COLOR_MIN = np.array([20, 80, 80],np.uint8)
COLOR_MAX = np.array([40, 255, 255],np.uint8)
frame_threshed = cv2.inRange(hsv_img, COLOR_MIN, COLOR_MAX)
imgray = frame_threshed
ret,thresh = cv2.threshold(frame_threshed,127,255,0)
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
cnt=contours[0]
x,y,w,h = cv2.boundingRect(cnt)
cv2.rectangle(im,(x,y),(x+w,y+h),(0,255,0),2)
cv2.imshow("Show",im)
cv2.waitKey()
cv2.destroyAllWindows()