The initial step the algorithm starts from
Namespace:
Emgu.CV.ML.MlEnumAssembly: Emgu.CV.ML (in Emgu.CV.ML.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
C# |
---|
public enum EM_INIT_STEP_TYPE |
Visual Basic (Declaration) |
---|
Public Enumeration EM_INIT_STEP_TYPE |
Visual C++ |
---|
public enum class EM_INIT_STEP_TYPE |
Members
Member name | 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
|