| EMStartStep Enumeration |
The initial step the algorithm starts from
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax Public Enumeration StartStep
public enum class StartStep
Members
| Member name | Value | Description |
---|
| E | 1 |
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 | 2 |
The algorithm starts with M-step. The initial probabilities p_i,k must be provided.
[CvEM::START_M_STEP]
|
| Auto | 0 |
No values are required from the user, k-means algorithm is used to estimate initial mixtures parameters.
[CvEM::START_AUTO_STEP]
|
See Also