1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge remote-tracking branch 'upstream/3.4' into merge-3.4

This commit is contained in:
Alexander Alekhin
2020-09-05 18:53:51 +00:00
9 changed files with 133 additions and 42 deletions
+9
View File
@@ -1294,6 +1294,15 @@ public:
*/
CV_WRAP virtual void getVotes(InputArray samples, OutputArray results, int flags) const = 0;
/** Returns the OOB error value, computed at the training stage when calcOOBError is set to true.
* If this flag was set to false, 0 is returned. The OOB error is also scaled by sample weighting.
*/
#if CV_VERSION_MAJOR == 4
CV_WRAP virtual double getOOBError() const { return 0; }
#else
/*CV_WRAP*/ virtual double getOOBError() const = 0;
#endif
/** Creates the empty model.
Use StatModel::train to train the model, StatModel::train to create and train the model,
Algorithm::load to load the pre-trained model.