Enum EMStartStep
The initial step the algorithm starts from
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public enum EMStartStep
Fields
Name | Description |
---|---|
Auto | No values are required from the user, k-means algorithm is used to estimate initial mixtures parameters. [CvEM::START_AUTO_STEP] |
E | 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). [CvEM::START_E_STEP] |
M | The algorithm starts with M-step. The initial probabilities p_i,k must be provided. [CvEM::START_M_STEP] |