C# 클래스 OpenCvSharp.ML.ANN_MLP

Artificial Neural Networks - Multi-Layer Perceptrons.
상속: StatModel
파일 보기 프로젝트 열기: shimat/opencvsharp

공개 메소드들

메소드 설명
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