i have followed this video for OpenCV installation: https://www.youtube.com/watch?v=5pYh1rFnNZs
Everything is built successfully in CMake, and I built and installed files using Visual Studio 2019 and everything was successful. But at last, when I opened command prompt, I have got this error:
C:\Users\Ganesh Akshaya>python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python38\lib\site-packages\cv2\__init__.py", line 89, in <module>
bootstrap()
File "C:\Python38\lib\site-packages\cv2\__init__.py", line 79, in bootstrap
import cv2
ImportError: DLL load failed while importing cv2: The specified module could not be found.
>>>