Create a neural network using the specific parameters

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

Syntax

C#
public static IntPtr CvANN_MLPCreate(
	IntPtr layerSizes,
	ANN_MLP_ACTIVATION_FUNCTION activeFunction,
	double fParam1,
	double fParam2
)
Visual Basic (Declaration)
Public Shared Function CvANN_MLPCreate ( _
	layerSizes As IntPtr, _
	activeFunction As ANN_MLP_ACTIVATION_FUNCTION, _
	fParam1 As Double, _
	fParam2 As Double _
) As IntPtr
Visual C++
public:
static IntPtr CvANN_MLPCreate(
	IntPtr layerSizes, 
	ANN_MLP_ACTIVATION_FUNCTION activeFunction, 
	double fParam1, 
	double fParam2
)

Parameters

layerSizes
Type: System..::.IntPtr
The size of the layer
activeFunction
Type: Emgu.CV.ML.MlEnum..::.ANN_MLP_ACTIVATION_FUNCTION
Activation function
fParam1
Type: System..::.Double
Free parameters of the activation function, alpha
fParam2
Type: System..::.Double
Free parameters of the activation function, beta

Return Value

The nearual network created

See Also