Re-editing Documentation

Attempting to re-editing the documentation, to satisfy buildbot error
status.
This commit is contained in:
TobyWanKenobi 2014-12-03 15:54:25 +01:00
parent 270af2ca79
commit b3bba3476d

View File

@ -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> svm = StatModel::loadFromString<SVM>(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> svm = StatModel::loadFromString<SVM>(myXMLStringModel);
*/
template<typename _Tp> static Ptr<_Tp> loadFromString(const String& strModel)
{