OpenCV for Unity
2.6.3
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.10.0/index.html ) for the details of the argument of the method.
|
The class represents a single decision tree or a collection of decision trees. More...
Public Member Functions | |
int | getMaxCategories () |
void | setMaxCategories (int val) |
int | getMaxDepth () |
void | setMaxDepth (int val) |
int | getMinSampleCount () |
void | setMinSampleCount (int val) |
int | getCVFolds () |
void | setCVFolds (int val) |
bool | getUseSurrogates () |
void | setUseSurrogates (bool val) |
bool | getUse1SERule () |
void | setUse1SERule (bool val) |
bool | getTruncatePrunedTree () |
void | setTruncatePrunedTree (bool val) |
float | getRegressionAccuracy () |
void | setRegressionAccuracy (float val) |
Mat | getPriors () |
void | setPriors (Mat val) |
Public Member Functions inherited from OpenCVForUnity.MlModule.StatModel | |
int | getVarCount () |
Returns the number of variables in training samples. More... | |
override bool | empty () |
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. More... | |
bool | isTrained () |
Returns true if the model is trained. More... | |
bool | isClassifier () |
Returns true if the model is classifier. More... | |
bool | train (TrainData trainData, int flags) |
Trains the statistical model. More... | |
bool | train (TrainData trainData) |
Trains the statistical model. More... | |
bool | train (Mat samples, int layout, Mat responses) |
Trains the statistical model. More... | |
float | calcError (TrainData data, bool test, Mat resp) |
Computes error on the training or test dataset. More... | |
virtual float | predict (Mat samples, Mat results, int flags) |
Predicts response(s) for the provided sample(s) More... | |
virtual float | predict (Mat samples, Mat results) |
Predicts response(s) for the provided sample(s) More... | |
virtual float | predict (Mat samples) |
Predicts response(s) for the provided sample(s) More... | |
Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
IntPtr | getNativeObjAddr () |
virtual void | clear () |
Clears the algorithm state. More... | |
void | save (string filename) |
virtual string | getDefaultName () |
Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
void | Dispose () |
void | ThrowIfDisposed () |
Static Public Member Functions | |
static new DTrees | __fromPtr__ (IntPtr addr) |
static DTrees | create () |
Creates the empty model. More... | |
static DTrees | load (string filepath, string nodeName) |
Loads and creates a serialized DTrees from a file. More... | |
static DTrees | load (string filepath) |
Loads and creates a serialized DTrees from a file. More... | |
Static Public Member Functions inherited from OpenCVForUnity.MlModule.StatModel | |
static new StatModel | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
static Algorithm | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
static IntPtr | ThrowIfNullIntPtr (IntPtr ptr) |
Public Attributes | |
const int | PREDICT_AUTO = 0 |
const int | PREDICT_SUM = (1 << 8) |
const int | PREDICT_MAX_VOTE = (2 << 8) |
const int | PREDICT_MASK = (3 << 8) |
Public Attributes inherited from OpenCVForUnity.MlModule.StatModel | |
const int | UPDATE_MODEL = 1 |
const int | RAW_OUTPUT = 1 |
const int | COMPRESSED_INPUT = 2 |
const int | PREPROCESSED_INPUT = 4 |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.MlModule.StatModel | |
override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.DisposableOpenCVObject | |
DisposableOpenCVObject () | |
DisposableOpenCVObject (IntPtr ptr) | |
DisposableOpenCVObject (bool isEnabledDispose) | |
DisposableOpenCVObject (IntPtr ptr, bool isEnabledDispose) | |
Protected Member Functions inherited from OpenCVForUnity.DisposableObject | |
DisposableObject () | |
DisposableObject (bool isEnabledDispose) | |
Additional Inherited Members | |
Properties inherited from OpenCVForUnity.DisposableObject | |
bool | IsDisposed [get, protected set] |
bool | IsEnabledDispose [get, set] |
The class represents a single decision tree or a collection of decision trees.
The current public interface of the class allows user to train only a single decision tree, however the class is capable of storing multiple decision trees and using them for prediction (by summing responses or using a voting schemes), and the derived from DTrees classes (such as RTrees and Boost) use this capability to implement decision tree ensembles.
|
static |
|
static |
Creates the empty model.
The static method creates empty decision tree with the specified parameters. It should be then trained using train method (see StatModel::train). Alternatively, you can load the model from file using Algorithm::load<DTrees>(filename).
|
protectedvirtual |
Reimplemented from OpenCVForUnity.CoreModule.Algorithm.
Reimplemented in OpenCVForUnity.MlModule.RTrees.
int OpenCVForUnity.MlModule.DTrees.getCVFolds | ( | ) |
int OpenCVForUnity.MlModule.DTrees.getMaxCategories | ( | ) |
int OpenCVForUnity.MlModule.DTrees.getMaxDepth | ( | ) |
int OpenCVForUnity.MlModule.DTrees.getMinSampleCount | ( | ) |
float OpenCVForUnity.MlModule.DTrees.getRegressionAccuracy | ( | ) |
bool OpenCVForUnity.MlModule.DTrees.getTruncatePrunedTree | ( | ) |
bool OpenCVForUnity.MlModule.DTrees.getUse1SERule | ( | ) |
bool OpenCVForUnity.MlModule.DTrees.getUseSurrogates | ( | ) |
|
static |
Loads and creates a serialized DTrees from a file.
Use DTree::save to serialize and store an DTree to disk. Load the DTree from this file again, by calling this function with the path to the file. Optionally specify the node for the file containing the classifier
filepath | path to serialized DTree |
nodeName | name of node containing the classifier |
|
static |
Loads and creates a serialized DTrees from a file.
Use DTree::save to serialize and store an DTree to disk. Load the DTree from this file again, by calling this function with the path to the file. Optionally specify the node for the file containing the classifier
filepath | path to serialized DTree |
nodeName | name of node containing the classifier |
void OpenCVForUnity.MlModule.DTrees.setCVFolds | ( | int | val | ) |
void OpenCVForUnity.MlModule.DTrees.setMaxCategories | ( | int | val | ) |
void OpenCVForUnity.MlModule.DTrees.setMaxDepth | ( | int | val | ) |
void OpenCVForUnity.MlModule.DTrees.setMinSampleCount | ( | int | val | ) |
void OpenCVForUnity.MlModule.DTrees.setRegressionAccuracy | ( | float | val | ) |
void OpenCVForUnity.MlModule.DTrees.setTruncatePrunedTree | ( | bool | val | ) |
void OpenCVForUnity.MlModule.DTrees.setUse1SERule | ( | bool | val | ) |
void OpenCVForUnity.MlModule.DTrees.setUseSurrogates | ( | bool | val | ) |
const int OpenCVForUnity.MlModule.DTrees.PREDICT_AUTO = 0 |
const int OpenCVForUnity.MlModule.DTrees.PREDICT_MASK = (3 << 8) |
const int OpenCVForUnity.MlModule.DTrees.PREDICT_MAX_VOTE = (2 << 8) |
const int OpenCVForUnity.MlModule.DTrees.PREDICT_SUM = (1 << 8) |