Erro ao carregar o arquivo XML OpenCV com o Python

Estou usando o OpenCV 2.4.1 e o Python 2.7 (Enthought EPD 7.3 em execução no Visual Studio Python Tools). Estou tentando ler um arquivo xml usando a função OpenCV Load ():

import cv2
import numpy as np

reprojectionError=cv2.Load("calib.xml")

mas estou recebendo este erro:

    reprojectionError=cv2.Load("calib.xml")
AttributeError: 'module' object has no attribute 'Load'
Press any key to continue . . .

Alguma ideia?

questionAnswers(5)

yourAnswerToTheQuestion