I see problem unsolvable.I get this error when I try to import numpy
import cv2
import numpy as np
img=cv2.imread('image.jpg',1)
cv2.imshow('image', img)
cv2.waitkey()
cv2.destroyAllWwindows()
when I run attribute imread is not working
cv2.error: OpenCV(3.4.1) C:\projects\opencv-python\opencv\modules\highgui\src\window.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
cv2.imshowis not implemented. Print the output of functioncv2.getBuildInformation()and in the result search forGUI. - zindarodGUI, you'll seeVTK support: NO. This means your OpenCV was not built with GUI support. Follow an online guide and build opencv from source with GUI support. - zindarod