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

后端 未结 10 1744
情深已故
情深已故 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:30

    In visual studio 2019, TRY THIS Add missing file opencv_world430.dll or opencv_worldd.dll in the debug directory of the project where your project application exe file is there. copy & paste missing files in the debug folder

    C:\Users\myname\source\repos\myopencv\x64\Debug + add your missing file here

    my problem got solved in microsoft visual studio 2019 :)

提交回复
热议问题