基于Python的opencv学习练习(十二) findContours()轮廓与绘制drawContours()
importcv2#加载图像img=cv2.imread('rectangle.jpg',1)#将RGB图像转化为灰度图像img_gray=cv2.cvtColor(img,cv2.COLOR_RGB2GRAY)#将灰度图像二值化ret,thresh=cv2.threshold(img_gray,127,255,0)contours,hierarchy=cv2.findContours(thres