提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
主要是记录了一下昨天明明还能跑的代码,今天就报废了`
先前版本的findContours()函数用法:
contours, hierarchy = cv.findContours(thresh, cv.RETR_TREE, cv.CHAIN_APPROX_SIMPLE)
两个返回值,hierarchy是轮廓间的层级关系,contours就是轮廓,以链表形式存储,记录了每条轮廓的所有像素点的坐标(x,y)。
但是现在返回值变成三个了:
input_array,contours, hierarchy = cv.findContours(thresh, cv.RETR_TREE, cv.CHAIN_APPROX_SIMPLE)
代码如下(示例):
import cv2
img_path = '20.png' #读取原图
mask_path = 'mask.png'
#pred_path='000362.png'
save_path = 'det/'
mask = cv2.imread(mask_path )
#pred = cv2.imread(pred_path )
image = cv2.imread(img_path,1 )
gray = cv2.cvtColor(mask,cv2.COLOR_BGR2GRAY) #转为灰度图片
ret, binary = cv2.threshold(gray,0.01,255,cv2.THRESH_BINARY)
a1,contours, hierarchy= cv2.findContours(binary,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(image,contours,-1,(0,0,255),2) #在原图上绘制出轮廓
cv2.imwrite(save_path + str(0) + '.png', image)
第一次写,还请大家多多包容。