The MlInvoke type exposes the following members.

Constructors

  NameDescription
MlInvoke
Initializes a new instance of the MlInvoke class

Methods

  NameDescription
CvANN_MLPCreate
Create a neural network using the specific parameters
CvANN_MLPGetLayerCount
Get the number of layers in the ANN_MLP
CvANN_MLPPredict
Given the model, predit the outputs response of the inputs samples
CvANN_MLPRelease
Release the ANN_MLP model
CvANN_MLPTrain
Train the ANN_MLP model with the specific paramters
CvBoostCreate
Create a default boost classicfier
CvBoostParamsCreate
Create default parameters for CvBoost
CvBoostParamsRelease
Release the CvBoostParams
CvBoostPredict
Runs the sample through the trees in the ensemble and returns the output class label based on the weighted voting
CvBoostRelease
Release the boost classicfier
CvBoostTrain
Train the boost tree using the specific traning data
CvDTreeCreate
Create a default decision tree
CvDTreeParamsCreate
Create default parameters for CvDTreeParams
CvDTreeParamsRelease
Release the CvDTreeParams
CvDTreePredict
The method takes the feature vector and the optional missing measurement mask on input, traverses the decision tree and returns the reached leaf node on output. The prediction result, either the class label or the estimated function value, may be retrieved as value field of the CvDTreeNode structure
CvDTreeRelease
Release the decision tree model
CvDTreeTrain
Train the decision tree using the specific training data
CvEMDefaultCreate
Create a default EM model
CvEMGetCovs
Get the covariance matrices of the clusters from the EM model
CvEMGetMeans
Get the means of the clusters from the EM model
CvEMGetNclusters
Get the number of clusters from the EM model
CvEMGetProbs
Get the probabilities from the EM model
CvEMGetWeights
Get the weights of the clusters from the EM model
CvEMPredict
Given the EM model, predit the probability of the samples
CvEMRelease
Release the EM model
CvEMTrain
Train the EM model using the specific training data
CvERTreesCreate
Create a default extreme random tree
CvERTreesRelease
Release the extreme random tree model
CvKNearestCreate
Create the KNearest classifier using the specific traing data.
CvKNearestDefaultCreate
Create a KNearest classifier
CvKNearestFindNearest
For each input vector (which are rows of the matrix samples) the method finds k <= get_max_k() nearest neighbor. In case of regression, the predicted result will be a mean value of the particular vector's neighbor responses. In case of classification the class is determined by voting.
CvKNearestRelease
Release the KNearest classifer
CvKNearestTrain
Update the KNearest classifier using the specific traing data.
CvNormalBayesClassifierCreate
Create a normal Bayes classifier using the specific training data
CvNormalBayesClassifierDefaultCreate
Create a normal bayes classifier
CvNormalBayesClassifierPredict
Given the NormalBayesClassifier model, predit the probability of the samples
CvNormalBayesClassifierRelease
Release the memory associated with the bayes classifier
CvNormalBayesClassifierTrain
Train the classifier using the specific data
CvRTParamsCreate
Create default parameters for CvRTParams
CvRTParamsRelease
Release the CvRTParams
CvRTreesCreate
Create a default random tree
CvRTreesGetTreeCount
Get the number of Trees in the Random tree
CvRTreesGetVarImportance
Get the variable importance
CvRTreesPredict
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)
CvRTreesRelease
Release the random tree model
CvRTreesTrain
Train the random tree using the specific traning data
CvSVMDefaultCreate
Create a default SVM model
CvSVMGetDefaultGrid
Get the default parameter grid for the specific SVM type
CvSVMGetSupportVector
The method retrieves a given support vector
CvSVMGetSupportVectorCount
The method retrieves the number of support vectors
CvSVMGetVarCount
The method retrieves the number of vars
CvSVMPredict
Predicts response for the input sample.
CvSVMRelease
Release the SVM model and all the memory associated to ir
CvSVMTrain
Train the SVM model with the specific paramters
CvSVMTrainAuto
The method trains the SVM model automatically by choosing the optimal parameters C, gamma, p, nu, coef0, degree from CvSVMParams. By the optimality one mean that the cross-validation estimate of the test set error is minimal.
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
StatModelClear
Clear the statistic model
StatModelLoad
Load the statistic model from the specific file
StatModelSave
Save the statistic model to the specific file
ToString
Returns a String that represents the current Object.
(Inherited from Object.)

See Also