ImportError: DLL load failed while importing cv2: The specified module could not be found

Here’s the output:

Python 3.8.6 (tags/v3.8.6:db45529, Sep 23 2020, 15:52:53) [MSC v.1927 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.add_dll_directory('C:\\DevHome\\Program\\OpenCV450\\build\\lib\\Release')
<AddedDllDirectory('C:\\DevHome\\Program\\OpenCV450\\build\\lib\\Release')>
>>> import cv2
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: DLL load failed while importing cv2: The specified module could not be found.
>>> os.add_dll_directory('C:\\DevHome\\Program\\OpenCV450\\build\\bin\\Release')
<AddedDllDirectory('C:\\DevHome\\Program\\OpenCV450\\build\\bin\\Release')>
>>> import cv2
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: DLL load failed while importing cv2: The specified module could not be found.

Is there a way to change the code in OpenCV to tell me which specific DLL is being loaded?