OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CvConDensation
(Results
1 - 3
of
3
) sorted by null
/external/opencv/cv/src/
cvcondens.cpp
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
[
all
...]
/external/opencv/cv/include/
cvtypes.h
248
typedef struct
CvConDensation
263
CvConDensation
;
cv.h
586
CVAPI(
CvConDensation
*) cvCreateConDensation( int dynam_params,
591
CVAPI(void) cvReleaseConDensation(
CvConDensation
** condens );
594
CVAPI(void) cvConDensUpdateByTime(
CvConDensation
* condens);
597
CVAPI(void) cvConDensInitSampleSet(
CvConDensation
* condens, CvMat* lower_bound, CvMat* upper_bound );
[
all
...]
Completed in 563 milliseconds