Given the model, predit the outputs response of the inputs samples

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 static float CvANN_MLPPredict(
	IntPtr model,
	IntPtr inputs,
	IntPtr outputs
)
Public Shared Function CvANN_MLPPredict ( _
	model As IntPtr, _
	inputs As IntPtr, _
	outputs As IntPtr _
) As Single
public:
static float CvANN_MLPPredict(
	IntPtr model, 
	IntPtr inputs, 
	IntPtr outputs
)

Parameters

model
IntPtr
The ANN_MLP model
inputs
IntPtr
The input samples
outputs
IntPtr
The prediction results, should have the same # of rows as the inputs

Return Value

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

See Also