I see problem unsolvable.I get this error when I try to import numpy
JavaScript
x
8
1
import cv2
2
import numpy as np
3
4
img=cv2.imread('image.jpg',1)
5
cv2.imshow('image', img)
6
cv2.waitkey()
7
cv2.destroyAllWwindows()
8
when I run attribute imread
is not working
cv2.error: OpenCV(3.4.1) C:projectsopencv-pythonopencvmoduleshighguisrcwindow.cpp:636: error: (-2) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Carbon 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
Please help, Python
version 3.6
OpenCV
version :3.4.1
matplotlib
version : 2.2.2
Advertisement
Answer
I had the same issue too. Despite they were installed before, I’ve installed them again via:
JavaScript
1
3
1
pip install opencv-python
2
pip install opencv-contrib-python
3
and problem solved.