我正在尝试在灰度图像上使用Python opencv 函数Moments()
,但我收到以下TypeError
:
>>> img = cv.LoadImage('example_image.jpg', cv.CV_LOAD_IMAGE_GRAYSCALE)
>>> moments = cv.Moments(img)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: Argument '' must be CvSeq, CvArr, or a sequence of numbers
>>>
我确信此用法是正确的,因为它在 opencv 文档here中得到了证明,其中GetHuMoments()
使用Moments()
的结果。
我相信我已经正确安装了 opencv 和 numpy ,因为我已经成功地将它们用于许多其他事情,我在OS X 10.6和Red上都遇到过这种情况帽子6。
同样的问题是posed in the opencv user group,但我不想在回复指示时首先将图像转换为轮廓。
答案 0 :(得分:4)
看起来您需要强制从IplImage转换为cvMat
之前的问题是“使用Python OpenCV将图像捕获为数组”
Capture Image as Array with Python OpenCV
例如对我来说
>>> mm=cv.Moments(img)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: Argument '' must be CvSeq, CvArr, or a sequence of numbers
>>> mat=cv.GetMat(img)
>>> mm=cv.Moments(mat)
>>> mm.m00
181428.0
答案 1 :(得分:0)
您使用的是哪个python和opencv版本?我在python 2.6.6和opencv 2.1.0上获得了工作结果
~/Desktop$ ./opencv-test.py
> `enter code here`/home/tyndyll/Desktop/opencv-test.py(8)<module>()
-> img = cv.LoadImage( 'iron-maiden-live-after-death-iron-maiden_1920x1200_79442.jpg', cv.CV_LOAD_IMAGE_GRAYSCALE )
(Pdb) n
> /home/tyndyll/Desktop/opencv-test.py(9)<module>()
-> moments = cv.Moments( img )
(Pdb) p img
<iplimage(nChannels=1 width=1920 height=1200 widthStep=1920 )>
(Pdb) n
> /home/tyndyll/Desktop/opencv-test.py(10)<module>()
-> print "Done"
(Pdb) p moments
<cv.cvmoments object at 0x7f31fb5437b0>
(Pdb) c
Done