How to call a C++ function containing OpenCV's CUDA from a python DLL

I solved.
dlllib = ctypes.cdll.LoadLibrary(“opencv_world470d.dll”)
I was able to go after loading the build opencv dll.
thank you.