我正在尝试使用mog2在OpenCV 2.4.10中实现背景扣除。我的目标是使用背景减法来分割手部。不幸的是,用作前景的第一帧似乎在从网络摄像头进行实时捕获期间被卡住了。这是我用于这个简单项目的代码
#include "stdafx.h"
#include <opencv2\opencv.hpp>
#include <opencv2\imgproc\imgproc.hpp>
#include <opencv2\video\video.hpp>
#include <opencv2\core\core.hpp>
#include <iostream>
#include <sstream>
#include <string.h>
using namespace cv;
int main()
{
Mat frame, mask, gray;
BackgroundSubtractorMOG2 mog2;
VideoCapture cap(0);
if (cap.isOpened()){
while (true)
{
if (cap.read(frame))
{
imshow("frame", frame);
cvtColor(frame, gray, cv::COLOR_RGB2GRAY);
imshow("gray", gray);
mog2(gray, mask, 0.0);// 0.1 is learning rate
imshow("Background Subtraction", mask);
if (waitKey(30) >= 0)
break;
}
}
}
cap.release();
return 0;
}
这是输出
答案 0 :(得分:0)
这是因为你的拳头恰好位于第一帧,因此当你移动你的手时,你得到2张不同的图像 - 一张来自你手掌的新位置,另一张来自拳头的旧位置,现在被它背后的实际背景所占据。
我建议你不要在第一帧中掌握