Added sample links in documentation for python2, ocl and gpu

This commit is contained in:
StevenPuttemans
2013-08-02 14:05:08 +02:00
parent 9b5d1596dc
commit f28496c628
29 changed files with 144 additions and 7 deletions

View File

@@ -55,6 +55,10 @@ Maximally stable extremal region extractor. ::
The class encapsulates all the parameters of the MSER extraction algorithm (see
http://en.wikipedia.org/wiki/Maximally_stable_extremal_regions). Also see http://code.opencv.org/projects/opencv/wiki/MSER for useful comments and parameters description.
.. Sample code::
* : PYTHON : A complete example showing the use of the MSER detector can be found at opencv_source_code/samples/python2/mser.py
ORB
---

View File

@@ -5,7 +5,11 @@ Object Categorization
This section describes approaches based on local 2D features and used to categorize objects.
.. Sample code:: A complete Bag-Of-Words sample can be found at opencv_source_code/samples/cpp/bagofwords_classification.cpp
.. Sample code::
* : A complete Bag-Of-Words sample can be found at opencv_source_code/samples/cpp/bagofwords_classification.cpp
* : PYTHON : An example using the features2D framework to perform object categorization can be found at opencv_source_code/samples/python2/find_obj.py
BOWTrainer
----------