'module'对象没有属性'CreateStructuringElementEx'

时间:2017-01-27 22:14:30

标签: opencv opencv3.1

es = cv.CreateStructuringElementEx(9,9, 4,4, cv.CV_SHAPE_ELLIPSE)

  

AttributeError:'module'对象没有属性'CreateStructuringElementEx'

为什么呢?哪里可以看到版本之间的差异?

1 个答案:

答案 0 :(得分:1)

在OpenCV 3中,您应该使用:

cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(9,9))

查看OpenCV Python tutorials on morphological operations