“The program can't start because opencv_world300.dll is missing from your computer” error in C++

后端 未结 10 1750
情深已故
情深已故 2020-12-30 01:59

I want to compile an opencv Console C++ program in Visual Studio 2013. This is my code:

#include \"stdafx.h\"
#include \"opencv2/highgui/highgui.hpp\"
#inclu         


        
10条回答
  •  不知归路
    2020-12-30 02:48

    You can check your system variable to confirm the directory in which opencv_world300.dll is located (maybe C:\opencv\build\x64\vc12\bin) is present.

    If it exists but the problem still is not solved, try to put all .dll files in the directory to C:\WINDOWS\system32

提交回复
热议问题