0

即使在简单的程序中也会出现内存错误和异常。调试中的代码块 + mingw - SIGSEGV,调用堆栈 - user32.dll。运行时崩溃并出现 0xc0000005 错误。VC 也因未处理的异常而崩溃。

#include "opencv2/video/tracking.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv/cv.h"
#include "opencv/highgui.h"

#include <iostream>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>


using namespace cv;
using namespace std;

int main(int argc, char* argv[])
{
    CvCapture* capture = cvCreateCameraCapture(CV_CAP_ANY); //cvCaptureFromCAM( 0 );
    assert( capture );

    IplImage* frame=0;

    cvNamedWindow("capture", CV_WINDOW_AUTOSIZE);

    int counter=0;
    char filename[512];

    while(true){

            frame = cvQueryFrame( capture );


            cvShowImage("capture", frame);

            char c = cvWaitKey(33);
            if (c == 27) { 
                    break;
            }

    }

    cvReleaseCapture( &capture );
    cvDestroyWindow("capture");
    return 0;
  }
4

2 回答 2

1

我在您的代码中看不到任何错误。也许这是一些图书馆的错误。

但是你为什么要使用这个旧的 OpenCV 版本。使用 C++ 更容易

#include "opencv2/opencv.hpp"

using namespace cv;

int main(int, char**)
{
    VideoCapture cap(0); // open the default camera
    if(!cap.isOpened())  // check if we succeeded
        return -1;

    while(true)
    {
        Mat frame;
        cap >> frame; // get a new frame from camera
        imshow("frame", frame);
        if(waitKey(30) >= 0) break;
    }
    // the camera will be deinitialized automatically in VideoCapture destructor
    return 0;
}
于 2018-07-03T15:23:30.323 回答
0

您是否尝试过交换以下几行:

cvDestroyWindow("capture");

cvReleaseCapture( &capture );

我相信你应该cvDestroyWindow比之前打电话cvReleaseCapture。我认为窗口成为了所有者,capture应该首先销毁。

于 2013-06-26T05:39:25.250 回答