c++ - moving a opencv visual studio project -
I am working on an OpenCV project with Visual Studio 2013 and the version of OpenCV is 2.4.8. The problem I have is that when I move the .exe file that is created from second to Visual Studio, it complains that DLL files from OpenCiv Library are located in the C: \ OpenCV directory. Here is an error message:
System error: The program can not be started because opencv_core248d.dll is missing from your computer. Try to reinstall the program to fix this problem
Thank you in advance for your help.
You need to add either the directory in which all those DLSs are included in you , Or insert all those required DLSs in executable (or your executable where your DLS are located) in the same directory. They are dynamic libraries, so the program requires access to them when it tries to execute.
Comments
Post a Comment