Emgu CV Library Documentation
Predict Method (samples, probs)
NamespacesEmgu.CV.MLEMPredict(Matrix<(Of <(Single>)>), Matrix<(Of <(Single>)>))

www.emgu.com/wiki
Predit the probability of the samples
Declaration Syntax
C#Visual BasicVisual C++
public float Predict(
	Matrix<float> samples,
	Matrix<float> probs
)
Public Function Predict ( _
	samples As Matrix(Of Single), _
	probs As Matrix(Of Single) _
) As Single
public:
float Predict(
	Matrix<float>^ samples, 
	Matrix<float>^ probs
)
Parameters
samples (Matrix<(Of <(Single>)>))
The input samples
probs (Matrix<(Of <(Single>)>))
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

Assembly: Emgu.CV.ML (Module: Emgu.CV.ML) Version: 1.0.0.0 (1.0.0.0)