http://www.emgu.com
The method takes the feature vector and the optional missing measurement mask on input, traverses the random tree and returns the cumulative result from all the trees in the forest (the class that receives the majority of voices, or the mean of the regression function estimates)
Namespace: Emgu.CV.MLAssembly: Emgu.CV.ML (in Emgu.CV.ML.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
Parameters
- sample
- Type: Emgu.CV..::..Matrix<(Of <(<'Single>)>)>
The sample to be predicted
- missingDataMask
- 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)
Return Value
The cumulative result from all the trees in the forest (the class that receives the majority of voices, or the mean of the regression function estimates)
See Also