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

时间:2016-06-12 07:27:17

标签: python opencv

我编写了以下代码来使用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

0 个答案:

没有答案