0

背景減算を使用していて、コンテンツを表示したい。どういうわけか、メモリ例外が原因でコードが常に壊れているようです。エラーは cvCopy 関数にあるようです。それを理解することはできません。

#include "cv.h"
#include "highgui.h"
#include "opencv2\core\operations.hpp"
#include "opencv2\core\core.hpp"
#include "opencv2\core\types_c.h"
#include "opencv\cxcore.h"
#include <opencv2/opencv.hpp>

using namespace cv;
using namespace std;

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

    Mat gray,bg,result,frame,result1,final,frame1;
    //CvMemStorage*     contours = NULL;

    cap>>frame;
    cvtColor(frame,bg,CV_BGR2GRAY);

    namedWindow("GRAY",1);

    for(;;)
    {
        //final = Mat::zeros(mGreenScale.rows, mGreenScale.cols, CV_8UC3);
        cap >> frame; // get a new frame from camera
        cap1 >> frame1;
        cvtColor(frame, gray, CV_BGR2GRAY);
        absdiff(gray,bg,result);
        threshold(result,result1,50,255,THRESH_BINARY);
        //cvCopy(const CvArr* src, CvArr* dst, const CvArr* mask=NULL)¶
        //cvCopy(&frame1, &final, &result1);
        //findContours(result1,contours, ;CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE);
        //drawContours(final,contours,-1,CV_RGB(0,255,0));
        //imshow("GRAY",result1);
        //imshow("GRAY", result);
        imshow("GRAY1",final);

        if(flag)
        {
            imshow("BG",bg);
        }
        //if(waitKey(0)==27) break;
        if(waitKey(1)==32) 
        {
            cvtColor(frame,bg,CV_BGR2GRAY);
            flag=!flag;
        }
        if(waitKey(1)==27) 
        {
            break;
        }
    }
    // the camera will be deinitialized automatically in VideoCapture destructor
    return 0;
}
4

1 に答える 1

1

C と C++ API を混在させる代わりに、可能な場合は C++ API を使用することをお勧めします。単に行列をコピーしたい場合は、Mat::clone()またはMat::copyTo()を使用してください。マスクを使用したいので、次のcopyToようにメンバー関数を使用します。

Mat final;
frame1.copyTo(final, result1);

それが役立つことを願っています!

于 2012-01-04T14:58:28.223 に答える