本文介绍了"该程序无法启动,因为您的计算机缺少opencv_world300.dll. C ++中的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在Visual Studio 2013中编译一个opencv控制台C ++程序.这是我的代码:
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"
#include <iostream>
using namespace cv;
using namespace std;
int main(int argc, const char** argv)
{
Mat img = imread("rgb_1.png", CV_LOAD_IMAGE_UNCHANGED); //read the image data in the file "MyPic.JPG" and store it in 'img'
if (img.empty()) //check whether the image is loaded or not
{
cout << "Error : Image cannot be loaded..!!" << endl;
//system("pause"); //wait for a key press
return -1;
}
namedWindow("MyWindow", CV_WINDOW_AUTOSIZE); //create a window with the name "MyWindow"
imshow("MyWindow", img); //display the image which is stored in the 'img' in the "MyWindow" window
waitKey(0); //wait infinite time for a keypress
destroyWindow("MyWindow"); //destroy the window with the name, "MyWindow"
return 0;
}
尽管我已经在Computer和Visual Studio目录的属性中定义了所有目录,但出现以下错误:
Although I have defined all the directories in properties both in Computer and Visual Studio directories, I get the following error:
如何解决此问题?
推荐答案
在Windows下,您可以从以下位置复制它:
Under windows you can copy it from:
<your install directory>\opencv30\build\x64\vc12\bin
并将其放在您的Visual Studio解决方案中(我假设您使用的是 x64/Release 配置):
And put it in your Visual Studio solution (I assume you are using a x64/Release configuration):
<your solution directory>\x64\Release
或者您可以将上述OpenCV添加到PATH环境变量中
Or you you can add the above OpenCV to your PATH environment variable
这篇关于"该程序无法启动,因为您的计算机缺少opencv_world300.dll. C ++中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!