当前位置:   article > 正文

报错 error: (-215:Assertion failed) p.checkVector(2, CV_32S) >= 0 in function ‘fillPoly‘

error: (-215:assertion failed) p.checkvector(2, cv_32s) >= 0 in function 'cv

写在前面的话

我用labelme标注软件对图中的母猪的轮廓进行了标注,生成的json文件包含的是母猪的轮廓点的66个坐标,需要转成mask格式,用到opencv-python库里面的cv2.fillPoly函数

原始代码

seg_img = np.zeros_like(image), dtype=np.int8)#黑底
cv2.fillPoly(seg_img, np.array(json_data['shapes'][17]['points'], dtype=np.int32), (255,255,255))#白色mask

  • 1
  • 2
  • 3

运行报错

    cv2.fillPoly(seg_img, np.array(json_data['shapes'][17]['points'], dtype=np.int32), (255,255,255))
cv2.error: OpenCV(4.5.1) /tmp/pip-req-build-ms668fyv/opencv/modules/imgproc/src/drawing.cpp:2395: error: (-215:Assertion failed) p.checkVector(2, CV_32S) >= 0 in function 'fillPoly'
  • 1
  • 2

更改后代码

注意:json_data['shapes'][17]['points']是66个轮廓点的xy坐标,是一个列表,维度是(66,2),需要增加一个维度转成(1,66,2)表示为一个多边形才可以,这里需要将列表转成矩阵。

seg_img = np.zeros_like(image), dtype=np.int8)#黑底
cv2.fillPoly(seg_img, np.array([json_data['shapes'][17]['points']], dtype=np.int32), (255,255,255))

  • 1
  • 2
  • 3

运行成功

在这里插入图片描述

单通道的运行结果

seg_img = np.zeros((image.shape[0], image.shape[1]), dtype=np.int8)
cv2.fillPoly(seg_img, np.array([json_data['shapes'][17]['points']], dtype=np.int32), [255])

  • 1
  • 2
  • 3

在这里插入图片描述

补充

若是 dtype=np.uint32 会下面那个错

cv2.fillPoly(seg_img, np.array([json_data['shapes'][17]['points']], dtype=np.uint32), (255,255,255))

  • 1
  • 2

报错

TypeError: Expected Ptr<cv::UMat> for argument 'pts'
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/498904
推荐阅读
相关标签
  

闽ICP备14008679号