这是我的代码:
contours,hIErarchy = cv2.findContours(copy.deepcopy(img_copy),cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)areas = [cv2.contourArea(c) for c in contours]max_index = np.argmax(areas)cnt=contours[max_index]# how to fill of black the outsIDe of the contours cnt please? `解决方法 以下是如何在一组轮廓之外填充黑色图像:
import cv2import numpyimg = cv2.imread("zebra.jpg")stencil = numpy.zeros(img.shape).astype(img.dtype)contours = [numpy.array([[100,180],[200,280],180]]),numpy.array([[280,70],[12,20],[80,150]])]color = [255,255,255]cv2.fillpoly(stencil,contours,color)result = cv2.bitwise_and(img,stencil)cv2.imwrite("result.jpg",result)
以上是内存溢出为你收集整理的python – 填充OpenCV轮廓的外部全部内容,希望文章能够帮你解决python – 填充OpenCV轮廓的外部所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)