C# Класс OpenCvSharp.ML.ANN_MLP

Artificial Neural Networks - Multi-Layer Perceptrons.
Наследование: StatModel
Показать файл Открыть проект

Открытые методы

Метод Описание
Create ( ) : ANN_MLP

Creates the empty model.

GetLayerSizes ( ) : Mat

Integer vector specifying the number of neurons in each layer including the input and output layers. The very first element specifies the number of elements in the input layer. The last element - number of elements in the output layer.

SetLayerSizes ( InputArray layerSizes ) : void

Integer vector specifying the number of neurons in each layer including the input and output layers. The very first element specifies the number of elements in the input layer. The last element - number of elements in the output layer.Default value is empty Mat.

Защищенные методы

Метод Описание
ANN_MLP ( IntPtr p ) : System

Creates instance by raw pointer cv::ml::ANN_MLP*

Dispose ( bool disposing ) : void

Clean up any resources being used.

Описание методов

ANN_MLP() защищенный Метод

Creates instance by raw pointer cv::ml::ANN_MLP*
protected ANN_MLP ( IntPtr p ) : System
p System.IntPtr
Результат System

Create() публичный статический Метод

Creates the empty model.
public static Create ( ) : ANN_MLP
Результат ANN_MLP

Dispose() защищенный Метод

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool /// If disposing equals true, the method has been called directly or indirectly by a user's code. Managed and unmanaged resources can be disposed. /// If false, the method has been called by the runtime from inside the finalizer and you should not reference other objects. Only unmanaged resources can be disposed. ///
Результат void

GetLayerSizes() публичный Метод

Integer vector specifying the number of neurons in each layer including the input and output layers. The very first element specifies the number of elements in the input layer. The last element - number of elements in the output layer.
public GetLayerSizes ( ) : Mat
Результат Mat

SetLayerSizes() публичный Метод

Integer vector specifying the number of neurons in each layer including the input and output layers. The very first element specifies the number of elements in the input layer. The last element - number of elements in the output layer.Default value is empty Mat.
public SetLayerSizes ( InputArray layerSizes ) : void
layerSizes InputArray
Результат void