opencv/samples/cpp/bgfg_segm.cpp

65 lines
1.5 KiB
C++
Raw Normal View History

2010-11-29 15:00:49 +01:00
#include <opencv2/video/background_segm.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <stdio.h>
using namespace cv;
2010-11-30 02:26:29 +01:00
void help()
{
2010-12-04 09:30:10 +01:00
printf("\nDo background segmentation, especially demonstrating the use of cvUpdateBGStatModel().\n"
2010-11-30 02:26:29 +01:00
"Learns the background at the start and then segments.\n"
"Learning is togged by the space key. Will read from file or camera\n"
"Call:\n"
"./ bgfg_segm [file name -- if no name, read from camera]\n\n");
}
2010-11-29 15:00:49 +01:00
//this is a sample for foreground detection functions
int main(int argc, char** argv)
{
VideoCapture cap;
2010-11-29 15:00:49 +01:00
bool update_bg_model = true;
if( argc < 2 )
cap.open(0);
2010-11-29 15:00:49 +01:00
else
cap.open(argv[1]);
2010-11-30 02:26:29 +01:00
help();
2010-11-29 15:00:49 +01:00
if( !cap.isOpened() )
2010-11-29 15:00:49 +01:00
{
printf("can not open camera or video file\n");
return -1;
}
namedWindow("BG", 1);
namedWindow("FG", 1);
2010-11-29 15:00:49 +01:00
BackgroundSubtractorMOG2 bg_model;
Mat img, fgmask;
2010-11-29 15:00:49 +01:00
for(;;)
2010-11-29 15:00:49 +01:00
{
cap >> img;
if( img.empty() )
break;
2010-11-29 15:00:49 +01:00
bg_model(img, fgmask, update_bg_model ? -1 : 0);
imshow("image", img);
imshow("foreground mask", fgmask);
char k = (char)waitKey(30);
2010-11-29 15:00:49 +01:00
if( k == 27 ) break;
if( k == ' ' )
2010-11-30 02:26:29 +01:00
{
2010-11-29 15:00:49 +01:00
update_bg_model = !update_bg_model;
2010-11-30 02:26:29 +01:00
if(update_bg_model)
printf("Background update is on\n");
else
printf("Background update is off\n");
}
2010-11-29 15:00:49 +01:00
}
return 0;
}