http://www.emgu.com
Assembly: Emgu.CV.ML (in Emgu.CV.ML.dll) Version: 2.3.0.1416 (2.3.0.1416)
Train the random tree using the specific traning data
Namespace: Emgu.CV.MLAssembly: Emgu.CV.ML (in Emgu.CV.ML.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public bool Train( Matrix<float> trainData, DATA_LAYOUT_TYPE tflag, Matrix<float> responses, Matrix<byte> varIdx, Matrix<byte> sampleIdx, Matrix<byte> varType, Matrix<byte> missingMask, MCvRTParams param ) |
Visual Basic |
---|
Public Function Train ( _ trainData As Matrix(Of Single), _ tflag As DATA_LAYOUT_TYPE, _ responses As Matrix(Of Single), _ varIdx As Matrix(Of Byte), _ sampleIdx As Matrix(Of Byte), _ varType As Matrix(Of Byte), _ missingMask As Matrix(Of Byte), _ param As MCvRTParams _ ) As Boolean |
Visual C++ |
---|
public: bool Train( Matrix<float>^ trainData, DATA_LAYOUT_TYPE tflag, Matrix<float>^ responses, Matrix<unsigned char>^ varIdx, Matrix<unsigned char>^ sampleIdx, Matrix<unsigned char>^ varType, Matrix<unsigned char>^ missingMask, MCvRTParams param ) |
Parameters
- trainData
- Type: Emgu.CV..::..Matrix<(Of <(<'Single>)>)>
The training data. A 32-bit floating-point, single-channel matrix, one vector per row
- tflag
- Type: Emgu.CV.ML.MlEnum..::..DATA_LAYOUT_TYPE
data layout type
- responses
- Type: Emgu.CV..::..Matrix<(Of <(<'Single>)>)>
A floating-point matrix of the corresponding output vectors, one vector per row.
- varIdx
- Type: Emgu.CV..::..Matrix<(Of <(<'Byte>)>)>
Can be null if not needed. When specified, identifies variables (features) of interest. It is a Matrix<int> of nx1
- sampleIdx
- Type: Emgu.CV..::..Matrix<(Of <(<'Byte>)>)>
Can be null if not needed. When specified, identifies samples of interest. It is a Matrix<int> of nx1
- varType
- Type: Emgu.CV..::..Matrix<(Of <(<'Byte>)>)>
The types of input variables
- missingMask
- Type: Emgu.CV..::..Matrix<(Of <(<'Byte>)>)>
Can be null if not needed. When specified, it is an 8-bit matrix of the same size as trainData, is used to mark the missed values (non-zero elements of the mask)
- param
- Type: Emgu.CV.ML.Structure..::..MCvRTParams
The parameters for training the random tree
Return Value
[Missing <returns> documentation for "M:Emgu.CV.ML.RTrees.Train(Emgu.CV.Matrix{System.Single},Emgu.CV.ML.MlEnum.DATA_LAYOUT_TYPE,Emgu.CV.Matrix{System.Single},Emgu.CV.Matrix{System.Byte},Emgu.CV.Matrix{System.Byte},Emgu.CV.Matrix{System.Byte},Emgu.CV.Matrix{System.Byte},Emgu.CV.ML.Structure.MCvRTParams)"]