From 78f3b0ad1fd2f6a362348eb2276adc173ae92994 Mon Sep 17 00:00:00 2001 From: Rahul Kavi Date: Fri, 4 Oct 2013 09:17:58 -0400 Subject: [PATCH] removed unnecessary semicolon in LogisticRegression class documentation --- modules/ml/doc/logistic_regression.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ml/doc/logistic_regression.rst b/modules/ml/doc/logistic_regression.rst index 09647e4bcf..f143645267 100644 --- a/modules/ml/doc/logistic_regression.rst +++ b/modules/ml/doc/logistic_regression.rst @@ -123,7 +123,7 @@ The constructors. .. ocv:function:: LogisticRegression::LogisticRegression() -.. ocv:function:: LogisticRegression::LogisticRegression(cv::InputArray data_ip, cv::InputArray labels_ip, const LogisticRegressionParams& params); +.. ocv:function:: LogisticRegression::LogisticRegression(cv::InputArray data_ip, cv::InputArray labels_ip, const LogisticRegressionParams& params) :param data: The data variable of type ``CV_32F``. Each data instance has to be arranged per across different rows. @@ -148,7 +148,7 @@ LogisticRegression::predict --------------------------- Predicts responses for input samples and returns a float type. -.. ocv:function:: void LogisticRegression::predict( cv::InputArray data, cv::OutputArray predicted_labels ) const; +.. ocv:function:: void LogisticRegression::predict( cv::InputArray data, cv::OutputArray predicted_labels ) const :param data: The input data for the prediction algorithm. The ``data`` variable should be of type ``CV_32F``.