我编写了以下代码来使用Python和OpenCV规范化图像。当我尝试编译以下代码时,我收到以下错误。你能帮我解决一下吗?
`import cv2.cv as cv`
` import numpy`
import normalize
img=cv.LoadImage("img.jpg",0)
mat=cv.GetMat(img)
a = numpy.asarray(mat) #store the pixels in the input array
dst=[] # declare the output array
cv.Normalize(a,dst,0,255,cv.NORM_L1)
print a