Commit 04d484c6 authored by Ilya Lysenkov's avatar Ilya Lysenkov

Minor doc fix

parent 023f48dc
...@@ -43,7 +43,8 @@ Mat cv::findFundamentalMat( InputArray points1, InputArray points2, OutputArray ...@@ -43,7 +43,8 @@ Mat cv::findFundamentalMat( InputArray points1, InputArray points2, OutputArray
Mat findHomography( InputArray srcPoints, InputArray dstPoints, OutputArray mask, int method=0, double ransacReprojThreshold=3); Mat findHomography( InputArray srcPoints, InputArray dstPoints, OutputArray mask, int method=0, double ransacReprojThreshold=3);
########################################## ml ###################################### ########################################## ml ######################################
cvParamLattice
cvDefaultParamLattice
CvBoostTree CvBoostTree
CvForestTree CvForestTree
CvSVMKernel CvSVMKernel
......
...@@ -223,7 +223,7 @@ CvRTrees::calc_error ...@@ -223,7 +223,7 @@ CvRTrees::calc_error
The method is identical to :ocv:func:`CvDTree::calc_error` but uses the random forest as predictor. The method is identical to :ocv:func:`CvDTree::calc_error` but uses the random forest as predictor.
.. index:: CvRTrees::get_train_error() .. index:: CvRTrees::get_train_error
.. _CvRTrees::get_train_error: .. _CvRTrees::get_train_error:
...@@ -236,7 +236,7 @@ CvRTrees::get_train_error ...@@ -236,7 +236,7 @@ CvRTrees::get_train_error
The method works for classification problems only. It returns the proportion of incorrectly classified train samples. The method works for classification problems only. It returns the proportion of incorrectly classified train samples.
.. index:: CvRTrees::get_rng() .. index:: CvRTrees::get_rng
.. _CvRTrees::get_rng: .. _CvRTrees::get_rng:
......
...@@ -142,7 +142,7 @@ The method ``write`` stores the complete model state in the file storage with th ...@@ -142,7 +142,7 @@ The method ``write`` stores the complete model state in the file storage with th
CvStatModel::read CvStatModel::read
----------------- -----------------
.. ocv:function:: void CvStatMode::read( CvFileStorage* storage, CvFileNode* node ) .. ocv:function:: void CvStatModel::read( CvFileStorage* storage, CvFileNode* node )
Reads the model from the file storage. Reads the model from the file storage.
...@@ -157,7 +157,7 @@ The previous model state is cleared by ``clear()`` . ...@@ -157,7 +157,7 @@ The previous model state is cleared by ``clear()`` .
CvStatModel::train CvStatModel::train
------------------ ------------------
.. ocv:function:: bool CvStatMode::train( const Mat& train_data, [int tflag,] ..., const Mat& responses, ..., [const Mat& var_idx,] ..., [const Mat& sample_idx,] ... [const Mat& var_type,] ..., [const Mat& missing_mask,] <misc_training_alg_params> ... ) .. ocv:function:: bool CvStatModel::train( const Mat& train_data, [int tflag,] ..., const Mat& responses, ..., [const Mat& var_idx,] ..., [const Mat& sample_idx,] ... [const Mat& var_type,] ..., [const Mat& missing_mask,] <misc_training_alg_params> ... )
Trains the model. Trains the model.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment