Home | History | Annotate | Download | only in src

Lines Matching refs:CvConDensation

45 //    Purpose: Creating CvConDensation structure and allocating memory for it
48 // Kalman - double pointer to CvConDensation structure
57 CV_IMPL CvConDensation* cvCreateConDensation( int DP, int MP, int SamplesNum )
60 CvConDensation *CD = 0;
69 CV_CALL( CD = (CvConDensation *) cvAlloc( sizeof( CvConDensation )));
104 // Purpose: Releases CvConDensation structure and frees memory allocated for it
107 // Kalman - double pointer to CvConDensation structure
116 cvReleaseConDensation( CvConDensation ** ConDensation )
121 CvConDensation *CD = *ConDensation;
153 // Kalman - pointer to CvConDensation structure
159 cvConDensUpdateByTime( CvConDensation * ConDens )
223 // conDens - pointer to CvConDensation structure
232 cvConDensInitSampleSet( CvConDensation * conDens, CvMat * lowerBound, CvMat * upperBound )