http://www.emgu.com
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic KalmanFilter(
int dynamParams,
int measureParams,
int controlParams,
DepthType type = DepthType.Cv32F
)
Public Sub New (
dynamParams As Integer,
measureParams As Integer,
controlParams As Integer,
Optional type As DepthType = DepthType.Cv32F
)
public:
KalmanFilter(
int dynamParams,
int measureParams,
int controlParams,
DepthType type = DepthType::Cv32F
)
new :
dynamParams : int *
measureParams : int *
controlParams : int *
?type : DepthType
(* Defaults:
let _type = defaultArg type DepthType.Cv32F
*)
-> KalmanFilter
Parameters
- dynamParams
- Type: SystemInt32
Dimensionality of the state. - measureParams
- Type: SystemInt32
Dimensionality of the measurement. - controlParams
- Type: SystemInt32
Dimensionality of the control vector. - type (Optional)
- Type: Emgu.CV.CvEnumDepthType
Type of the created matrices that should be Cv32F or Cv64F
See Also