The initial step the algorithm starts from
Namespace: Emgu.CV.ML.MlEnumAssembly: Emgu.CV.ML (in Emgu.CV.ML.dll) Version: 2.2.1.1150 (2.2.1.1150)
Syntax
C# | Visual Basic | Visual C++ |
public enum EM_INIT_STEP_TYPE
Public Enumeration EM_INIT_STEP_TYPE
public enum class EM_INIT_STEP_TYPE
Members
Member | Description |
---|---|
START_E_STEP |
The algorithm starts with E-step.
At least, the initial values of mean vectors, CvEMParams.Means must be passed.
Optionally, the user may also provide initial values for weights (CvEMParams.Weights) and/or covariation matrices (CvEMParams.Covs).
|
START_M_STEP |
The algorithm starts with M-step. The initial probabilities p_{i,k} must be provided
|
START_AUTO_STEP |
No values are required from the user, k-means algorithm is used to estimate initial mixtures parameters
|