AttributeError:' cv2.FileStorage'对象没有属性' getNode'

时间:2017-09-12 07:13:30

标签: python-3.x opencv3.0

我正在我的Ubuntu14.04机器上的PycharmCE2017中构建基于python3.4和opencv3.0的项目。运行下面的代码时,

import cv2

if __name__ == "__main__":
    savePath = "/home/s/Desktop/Imgcov/"
    filename = savePath + "depth.xml"
    fs = cv2.FileStorage(filename, cv2.FILE_STORAGE_READ)
    matrix = fs.getNode("data") 

我收到错误:

AttributeError: 'cv2.FileStorage' object has no attribute 'getNode'

我该如何解决这个问题?任何提示都表示赞赏。

1 个答案:

答案 0 :(得分:0)

我猜您需要使用版本超过3.2的opencv-python。