본문 바로가기

Debugging

windows10 python cv2.imshow, cv2.waitkey() The function is not implemented 에러 해결

잘 되던 cv2 모듈 중 몇몇 기능이 갑자기 안 돼서 당황스러웠던 이틀... 드디어 솔루션을 찾음 

 

에러

 (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x
 or Cocoa support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function 'cvShowImage'

 

솔루션

1. anaconda prompt를 연다

pycharm console X, anaconda prompt O

 

2. 다음과 같이 실행

conda update conda

pip uninstall opencv-python-headless

pip install opencv-python

 

→ 두번째 줄이 관건인듯 하다

 

3. 그러면 잘 실행이 되는 것을 볼 수 있음