Emgu.CV.CvInvoke throws an exception

I am using emgu in my project.

I get this with the exception of: enter image description here

Here are the details of the exception: enter image description here

The opencv_core242 file is located in the project folder, and the target platform is installed on x86.

Any idea what might throw an exception and how to solve it?

0
source share
2 answers

You can use Dependency Walker on cvextern.dll to find out if opencv_core242.dll depends on another dll, such as nvcuda.dll, or if you have a 32/64-bit mismatch.

Take a look at this other question .

+1
source

In ... / windows / system32 I attached the file cudart32_42_9.dll.It helped me solve the problem

0
source

All Articles