C++ Visual Studio 2012错误:应用程序无法正确启动(0xc0000007b)

C++ Visual Studio 2012错误:应用程序无法正确启动(0xc0000007b),c++,visual-studio,opencv,visual-studio-2012,C++,Visual Studio,Opencv,Visual Studio 2012,我正在尝试运行一个opencv程序。我已经相应地配置了opencv,但收到Visual Studio 2012错误“应用程序无法正确启动(0xc0000007b)” 下面是我试图运行的代码 #include "opencv2/highgui/highgui.hpp" #include <iostream> using namespace cv; using namespace std; int main(int argc, char* argv[]) { VideoCap

我正在尝试运行一个opencv程序。我已经相应地配置了opencv,但收到Visual Studio 2012错误“应用程序无法正确启动(0xc0000007b)”

下面是我试图运行的代码

#include "opencv2/highgui/highgui.hpp"
#include <iostream>

using namespace cv;
using namespace std;

int main(int argc, char* argv[])
{
    VideoCapture cap(0); // open the video camera no. 0

    if (!cap.isOpened())  // if not success, exit program
    {
        cout << "Cannot open the video file" << endl;
        return -1;
    }

    //get the width of frames of the video
    double dWidth = cap.get(CV_CAP_PROP_FRAME_WIDTH); 

    //get the height of frames of the video
    double dHeight = cap.get(CV_CAP_PROP_FRAME_HEIGHT); 

    cout << "Frame size : " << dWidth << " x " << dHeight << endl;

    namedWindow("MyVideo",CV_WINDOW_AUTOSIZE); //create a window called "MyVideo"

    while (1)
    {
        Mat frame;

        bool bSuccess = cap.read(frame); // read a new frame from video

        if (!bSuccess) //if not success, break loop
        {
            cout << "Cannot read a frame from video file" << endl;
            break;
        }

        imshow("MyVideo", frame); //show the frame in "MyVideo" window

        //wait for 'esc' key press for 30ms. If 'esc' key is pressed, break loop
        if (waitKey(30) == 27) 
        {
            cout << "esc key is pressed by user" << endl;
            break; 
        }
    }
    return 0;
}
#包括“opencv2/highgui/highgui.hpp”
#包括
使用名称空间cv;
使用名称空间std;
int main(int argc,char*argv[])
{
VideoCapture(0);//打开0号摄像机
如果(!cap.isopend())//如果不成功,退出程序
{

cout您可能没有正确包含所有库。使用可检查是否缺少任何内容。

如何使用依赖项漫游打开其中的exe文件。然后,它将显示它使用的所有库,并通知您是否缺少任何库。您可以看到左侧树中用红色表示的那些库。哪个.exe我应该使用您编译的程序。您的程序。相关: