_, 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
可能是什么错误?我想从轮廓中删除匹配的元素。