I am creating an application by using opencv2.3 IN VC++2010 express addition. The build is successful but while compiling it says that ‘opencv_highgui230.dll was not found.Reinstalling the application may fix the problem.’ Though I have added all the necessary include and lib files.
I am creating an application by using opencv2.3 IN VC++2010 express addition. The build
Share
It’s likely that this DLL can be found in
binor similarly named directory under where you installed the OpenCV library. For Windows binary distributions of various libraries, the DLL is usually included.For your program to load it, it either has to be in the same directory as the executable, in your system directory, usually
C:\Windows\system32\, or I think that it is possible to specify the location programmatically, in your code. This MSDN article can tell you more.Quick and, more likely then not, correct solution would be to copy the DLL into your executable’s directory.