Added the How to create videos with OpenCV Tutorial. Made some corrections to the feature2d, to get rid of some documentation build errors.

This commit is contained in:
Bernat Gabor
2011-08-13 14:02:18 +00:00
parent d2da81401f
commit bdfc0201de
10 changed files with 133 additions and 11 deletions

View File

@@ -3,7 +3,7 @@
*feature2d* module. 2D Features framework
-----------------------------------------------------------
Learn about how to use the feature points detectors, descriptors and matching framework found inside OpenCV.ddddddd
Learn about how to use the feature points detectors, descriptors and matching framework found inside OpenCV.
.. include:: ../../definitions/tocDefinitions.rst
@@ -190,7 +190,11 @@ Learn about how to use the feature points detectors, descriptors and matching f
.. toctree::
:hidden:
../feature_description/feature_description
../feature_detection/feature_detection
../trackingmotion/harris_detector/harris_detector
../feature_flann_matcher/feature_flann_matcher
../feature_homography/feature_homography
../trackingmotion/good_features_to_track/good_features_to_track.rst
../trackingmotion/generic_corner_detector/generic_corner_detector
../trackingmotion/corner_subpixeles/corner_subpixeles

View File

@@ -88,14 +88,14 @@ This tutorial code's is shown lines below. You can also download it from `here <
/// Apply corner detection
goodFeaturesToTrack( src_gray,
corners,
maxCorners,
qualityLevel,
minDistance,
Mat(),
blockSize,
useHarrisDetector,
k );
corners,
maxCorners,
qualityLevel,
minDistance,
Mat(),
blockSize,
useHarrisDetector,
k );
/// Draw corners detected
@@ -116,7 +116,7 @@ Explanation
Result
======
.. image:: images/Shi_Tomasi_Detector_Result.jpg
.. image:: images/Feature_Detection_Result_a.jpg
:align: center