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

Wrappers for load methods of EM, LR, SVMSGD and Normal Bayes Classifier

This commit is contained in:
chrizandr
2017-01-29 18:51:55 +05:30
parent aa5caf83f6
commit 519fbdb8ab
5 changed files with 66 additions and 0 deletions
+5
View File
@@ -458,6 +458,11 @@ Ptr<NormalBayesClassifier> NormalBayesClassifier::create()
return p;
}
Ptr<NormalBayesClassifier> NormalBayesClassifier::load(const String& filepath, const String& nodeName)
{
return Algorithm::load<NormalBayesClassifier>(filepath, nodeName);
}
}
}