Skip to content

Commit

Permalink
Fix svm intro tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-shakhuro committed May 14, 2014
1 parent 0ebde64 commit 6a93b43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/tutorials/ml/introduction_to_svm/introduction_to_svm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ Explanation

.. code-block:: cpp
Mat trainingDataMat(3, 2, CV_32FC1, trainingData);
Mat labelsMat (3, 1, CV_32FC1, labels);
Mat trainingDataMat(4, 2, CV_32FC1, trainingData);
Mat labelsMat (4, 1, CV_32FC1, labels);
2. **Set up SVM's parameters**

Expand Down

0 comments on commit 6a93b43

Please sign in to comment.