2

请看下面的代码

#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/video/background_segm.hpp>

using namespace cv;
using namespace std;

Mat frame,back,fore;

int main()
{
    VideoCapture cam;
    BackgroundSubtractorMOG2 bgs(0,0,false);
    vector<vector<Point>>contours;

    bgs.setInt("nmixtures",3);

    cam.open(0);

    if(!cam.isOpened())
    {
        cout << "Cam not Found";
        return -1;
    }



    namedWindow("Frame");

    while(true)
    {
        cam>>frame;
        imshow("Frame",frame);

        if(waitKey(30)>=0)
        {
            break;
        }
    }
}

我正在尝试将 of 的值设置为3 和nmixuresof into 。BackgroundSubtractorMOG2bShadowDetectionBackgroundSubtractorMOG2false

但是,与 OpenCV 2.4.5 一样,这些值设置为私有,因此我无法直接访问它们。我设法 bShadowDetection通过构造函数设置了 的值(尽管我不知道其他 2 个参数是什么),但我找不到设置nmixers. 我不知道我设置nmixures的方式是否正确,因为在我阅读的文章中,作者说“在opencv 2.4的情况下通过构造函数设置它们”

你能告诉我如何设置这两个值吗?

4

2 回答 2

2

在 OpenCV 2.4.8 中:

bgs.set("nmixtures", 3);
bgs.set("detectShadows", false);
于 2014-04-02T10:22:20.283 回答
1

在你的情况下,你必须写:

BackgroundSubtractorMOG2 bgs;
bgs.setInt("nmixtures", 3);
bgs.setBool("detectShadows", false);
于 2013-09-17T06:00:56.133 回答