我有以下代码。
cv::VideoCapture capture;
cv::Mat image;
cv::Mat foregroundMask
cv::BackgroundSubtractorMOG2 backgroundModel;
// update background model
for(int i = 0; i < 10; ++i)
{
capture >> image;
backgroundModel(image, foregroundMask);
}
//clear background model
// TODO
// update background model
for(int i = 0; i < 10; ++i)
{
capture >> image;
backgroundModel(image, foregroundMask);
}
如何清除背景模型并从头开始重新更新?就像之前没有更新过一样。替换上面代码中 TODO 部分的代码应该是什么?