Created
February 18, 2010 22:19
-
-
Save hansent/308147 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CvBlobTrackerAutoParam1 param = {0}; | |
param.FGTrainFrames = 0; | |
param.pFG = cvCreateFGDetectorBase(CV_BG_MODEL_FGD, NULL); //new otFGDetector(); | |
param.pBD = cvCreateBlobDetectorCC(); | |
param.pBT = cvCreateBlobTrackerCCMSPF(); | |
param.pBTGen = NULL; | |
param.pBTPP = cvCreateModuleBlobTrackPostProcKalman(); | |
param.UsePPData = false; | |
param.pBTA = NULL; | |
this->tracker = cvCreateBlobTrackerAuto1(¶m); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment