Table of Contents

Enum EMStartStep

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

The initial step the algorithm starts from

public enum EMStartStep

Fields

Auto = 0

No values are required from the user, k-means algorithm is used to estimate initial mixtures parameters. [CvEM::START_AUTO_STEP]

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]