Normalized file endings.

This commit is contained in:
Roman Donchenko
2013-08-21 17:26:54 +04:00
parent f55740da70
commit e9a28f66ee
486 changed files with 166 additions and 606 deletions

View File

@@ -318,4 +318,3 @@ decision tree.
.. [Breiman84] Breiman, L., Friedman, J. Olshen, R. and Stone, C. (1984), *Classification and Regression Trees*, Wadsworth.

View File

@@ -194,5 +194,3 @@ The sample below (currently using the obsolete ``CvMat`` structures) demonstrate
cvReleaseMat( &trainData );
return 0;
}

View File

@@ -278,4 +278,3 @@ Returns neurons weights of the particular layer.
.. ocv:function:: double* CvANN_MLP::get_weights(int layer)
:param layer: Index of the particular layer.

View File

@@ -161,4 +161,3 @@ Predicts the response for a sample.
The method is used to predict the response for a new sample. In case of a classification, the method returns the class label. In case of a regression, the method returns the output function value. The input sample must have as many components as the ``train_data`` passed to ``train`` contains. If the ``var_idx`` parameter is passed to ``train``, it is remembered and then is used to extract only the necessary components from the input sample in the method ``predict``.
The suffix ``const`` means that prediction does not affect the internal model state, so the method can be safely called from within different threads.