I have python 3.6.3 32-bit version running on windows 10 64-bit machine.
Since the opencv found on this official website only supports python 2.7, I read here that I can use the following method to install opencv for python 3.6
However when I try to import cv2 in python, I get the following error:
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed: The specified module could not be found.
I also tried downloading opencv for python 3.6 from this unofficial site and following these instructions.
I am still getting the same error. Can somebody help me fix this?