문제

i'm trying to test the following code of the getting started page:

import numpy as np
import cv2   
img = cv2.imread('test.jpg', 0)
cv2.imshow('image', img)
cv2.waitkey(0)&0xFF
cv2.destroyAllWindows()

But i got this error:

init done 
opengl support available 
Traceback (most recent call last):
  File "showimg.py", line 5, in <module>
    cv2.waitkey(0)&0xFF
AttributeError: 'module' object has no attribute 'waitkey'
Violación de segmento

I executed the examples that comes with the opencv installation, and they run correctly. Also, the last example that use the Matplotlib works fine.

¿Any idea of the error?, ¿any suggestion?

도움이 되었습니까?

해결책

AttributeError: 'module' object has no attribute 'waitkey'

Try cv2.waitKey in place of cv2.waitkey. Capitalization counts.

다른 팁

cv2.waitKey()

This syntax works. In the open parentheses add time.

Try waitKey() instead of waitkey(),It worls fine.

'module' object has no attribute 'waitkey' 

For solving this problem you should use this code:

enter image description here

'waitKey' with capital K, it will solve your problem.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top