diff --git a/modules/ml/include/opencv2/ml.hpp b/modules/ml/include/opencv2/ml.hpp index 598c5b1b1..060776224 100644 --- a/modules/ml/include/opencv2/ml.hpp +++ b/modules/ml/include/opencv2/ml.hpp @@ -828,12 +828,11 @@ public: } /** @brief Loads model from an XML String - - This is static template method of StatModel. It's usage is following (in the case of SVM): : - - Ptr svm = StatModel::loadFromString(myXMLStringModel); - + @param strModel The string variable containing the model (in an XML format) you want to load. + + This is static template method of StatModel. It's usage is following (in the case of SVM): + Ptr svm = StatModel::loadFromString(myXMLStringModel); */ template static Ptr<_Tp> loadFromString(const String& strModel) {