运行OpenCv代码时出现系统错误

时间:2013-03-28 12:36:01

标签: c++ opencv

当我运行我的代码时,发生了以下错误: a busy cat http://i45.tinypic.com/2h3o6y1.jpg

我的代码是:

#include "cv.h"
#include "highgui.h"

using namespace cv;

int main(int, char**)
{
    VideoCapture cap(0);
    if(!cap.isOpened()) return -1;

    Mat frame, edges;
    namedWindow("edges",1);
    for(;;)
    {
        cap >> frame;
        cvtColor(frame, edges, CV_BGR2GRAY);
        GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);
        Canny(edges, edges, 0, 30, 3);
        imshow("edges", edges);
        if(waitKey(30) >= 0) break;
    }
    return 0;
}

我检查opencv bin和dll,但这个dll存在

1 个答案:

答案 0 :(得分:1)

将相关的opencvcore_244.dll从openCV安装复制到%systemroot%\ system32(如果DLL或您的程序是64位,则复制到%systemroot%\ sysWOW64)。