[This is preliminary documentation and is subject to change.]

Allocates CvKalman and all its matrices and initializes them somehow.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr cvCreateKalman(
	int dynamParams,
	int measureParams,
	int controlParams
)
Public Shared Function cvCreateKalman ( _
	dynamParams As Integer, _
	measureParams As Integer, _
	controlParams As Integer _
) As IntPtr
public:
static IntPtr cvCreateKalman(
	int dynamParams, 
	int measureParams, 
	int controlParams
)

Parameters

dynamParams
Int32
dimensionality of the state vector
measureParams
Int32
dimensionality of the measurement vector
controlParams
Int32
dimensionality of the control vector

Return Value

[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.cvCreateKalman(System.Int32,System.Int32,System.Int32)"]

See Also