Reputation: 3953
I started learning C# because I wanted to work on computer vision using Emgu CV, but when I installed try to run a test program with VS 2012 Ultimate, I get the error in the image below.
It runs well for ordinary c# programs. I have tried all I know, I have even reinstalled Emgu CV, four times and my visual studio as well.
Upvotes: 0
Views: 1626
Reputation: 11
As far as I can remember from when I downloaded EmguCV, When you download V 3.0 (I dont see why you would want to use a previous version) you are given the option to download with or without CUDA acceleration. https://sourceforge.net/projects/emgucv/files/emgucv/3.0.0-alpha/ The problem you are encountering is possibly a result of installing the CUDA package. . These are the download options from SourceForge
Upvotes: 0
Reputation: 7166
It looks like you don't have a nVidia graphics card with CUDA support (nvcuda.dll, nv = nvidia, cuda = cuda) and I got the impression that it is not possible to use emgucv then. read this for more information EmguCV - nvcuda.dll could not be found (answer 1).
Upvotes: 1