Given the EM model, predit the probability of the samples

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static float CvEMPredict(
	IntPtr model,
	IntPtr samples,
	IntPtr probs
)
Public Shared Function CvEMPredict ( _
	model As IntPtr, _
	samples As IntPtr, _
	probs As IntPtr _
) As Single
public:
static float CvEMPredict(
	IntPtr model, 
	IntPtr samples, 
	IntPtr probs
)

Parameters

model
IntPtr
The EM model
samples
IntPtr
The input samples
probs
IntPtr
The prediction results, should have the same # of rows as the samples

Return Value

In case of classification the method returns the class label, in case of regression - the output function value

See Also