In [1]:
import sys
print(sys.executable)


C:\Users\richa\Programming\WinPython-64bit-3.6.1.0Qt5\python-3.6.1.amd64\python.exe

In [4]:
import cv2


---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-4-72fbbcfe2587> in <module>()
----> 1 import cv2

ImportError: DLL load failed: %1 is not a valid Win32 application.

In [ ]:
import numpy as np

In [ ]:
input = cv2.imread('./images/input.jpg')

In [ ]:
cv2.imshow('hello world',input)

In [ ]:
cv2.waitkey
cv2.destroyAllWindows()

In [ ]: