I am trying to run this code:
import cv2
img=cv2.imread("1.jpg")
cv2.imshow("image",img)
cv2.waitkey(0)
cv2.destroyAllWindows()
The problem I keep getting is this error report:
from .cv2 import *
ImportError: numpy.core.multiarray failed to import
& i'am also installed opencv-python for cv2 cv2 is working. but i can't use cv2.imread()
Could you please help me?