'numpy.ndarray'对象没有属性'删除'

时间:2018-02-14 09:33:14

标签: python

_, contours0, hierarchy = cv.findContours( img1, cv.RETR_TREE, cv.CHAIN_APPROX_SIMPLE)
_, contours1, hierarchy = cv.findContours( thresh1, cv.RETR_TREE, cv.CHAIN_APPROX_SIMPLE)
for i in contours0[0]:
     if i in contours1[0]:
        contours0[0].delete(i)
print(contours0)

这会产生AttributeError:numpy.ndarray对象没有属性delete 可能是什么错误?我想从轮廓中删除匹配的元素。

0 个答案:

没有答案