OpenCV 3.1 drawContours '(-215) npoints > 0'

后端 未结 5 2165
一个人的身影
一个人的身影 2021-02-08 12:51

I\'m trying to create a mask from a contour, but am getting a C++ error.

Using OS X Yosemite, Python 2.7.10, OpenCV 3.1.0.

def create_mask(img, cnt):
            


        
5条回答
  •  悲&欢浪女
    2021-02-08 13:34

    If you just use this, it will work...

    ctr = np.array(cnt).reshape((-1,1,2)).astype(np.int32)
    cv2.drawContours(mask, [ctr], -1, 255, -1)
    

提交回复
热议问题