Creaet an Expectation Maximization model using the specific training parameters

Namespace:  Emgu.CV.ML
Assembly:  Emgu.CV.ML (in Emgu.CV.ML.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public EM(
	Matrix<float> samples,
	Matrix<float> sampleIdx,
	EMParams parameters,
	Matrix<int> labels
)
Public Sub New ( _
	samples As Matrix(Of Single), _
	sampleIdx As Matrix(Of Single), _
	parameters As EMParams, _
	labels As Matrix(Of Integer) _
)
public:
EM(
	Matrix<float>^ samples, 
	Matrix<float>^ sampleIdx, 
	EMParams^ parameters, 
	Matrix<int>^ labels
)

Parameters

samples
Matrix<(Of <(Single>)>)
The samples to be trained
sampleIdx
Matrix<(Of <(Single>)>)

[Missing <param name="sampleIdx"/> documentation for "M:Emgu.CV.ML.EM.#ctor(Emgu.CV.Matrix{System.Single},Emgu.CV.Matrix{System.Single},Emgu.CV.ML.EMParams,Emgu.CV.Matrix{System.Int32})"]

parameters
EMParams

[Missing <param name="parameters"/> documentation for "M:Emgu.CV.ML.EM.#ctor(Emgu.CV.Matrix{System.Single},Emgu.CV.Matrix{System.Single},Emgu.CV.ML.EMParams,Emgu.CV.Matrix{System.Int32})"]

labels
Matrix<(Of <(Int32>)>)

[Missing <param name="labels"/> documentation for "M:Emgu.CV.ML.EM.#ctor(Emgu.CV.Matrix{System.Single},Emgu.CV.Matrix{System.Single},Emgu.CV.ML.EMParams,Emgu.CV.Matrix{System.Int32})"]

See Also