1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

some more fixes in background/foreground subtraction; converted bgfg_segm.cpp sample to C++

This commit is contained in:
Vadim Pisarevsky
2010-12-28 21:28:34 +00:00
parent 2dd0e85264
commit e26ac53589
3 changed files with 42 additions and 56 deletions
+21 -35
View File
@@ -1,7 +1,9 @@
#include <opencv2/video/background_segm.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <stdio.h>
using namespace cv;
void help()
{
printf("\nDo background segmentation, especially demonstrating the use of cvUpdateBGStatModel().\n"
@@ -14,51 +16,39 @@ void help()
//this is a sample for foreground detection functions
int main(int argc, char** argv)
{
IplImage* tmp_frame = NULL;
CvCapture* cap = NULL;
VideoCapture cap;
bool update_bg_model = true;
if( argc < 2 )
cap = cvCaptureFromCAM(0);
cap.open(0);
else
cap = cvCaptureFromFile(argv[1]);
cap.open(argv[1]);
help();
if( !cap )
if( !cap.isOpened() )
{
printf("can not open camera or video file\n");
return -1;
}
tmp_frame = cvQueryFrame(cap);
if(!tmp_frame)
{
printf("can not read data from the video source\n");
return -1;
}
namedWindow("BG", 1);
namedWindow("FG", 1);
cvNamedWindow("BG", 1);
cvNamedWindow("FG", 1);
CvBGStatModel* bg_model = 0;
BackgroundSubtractorMOG2 bg_model;
Mat img, fgmask;
for( int fr = 1;tmp_frame; tmp_frame = cvQueryFrame(cap), fr++ )
for(;;)
{
if(!bg_model)
{
//create BG model
bg_model = cvCreateGaussianBGModel( tmp_frame );
//bg_model = cvCreateFGDStatModel( temp );
continue;
}
cap >> img;
double t = (double)cvGetTickCount();
cvUpdateBGStatModel( tmp_frame, bg_model, update_bg_model ? -1 : 0 );
t = (double)cvGetTickCount() - t;
printf( "%d. %.1f\n", fr, t/(cvGetTickFrequency()*1000.) );
cvShowImage("BG", bg_model->background);
cvShowImage("FG", bg_model->foreground);
char k = cvWaitKey(5);
if( img.empty() )
break;
bg_model(img, fgmask, update_bg_model ? -1 : 0);
imshow("image", img);
imshow("foreground mask", fgmask);
char k = (char)waitKey(30);
if( k == 27 ) break;
if( k == ' ' )
{
@@ -70,9 +60,5 @@ int main(int argc, char** argv)
}
}
cvReleaseBGStatModel( &bg_model );
cvReleaseCapture(&cap);
return 0;
}