minor addition to SURF doc (#188)
authorMaria Dimashova <no@email>
Fri, 26 Nov 2010 12:06:07 +0000 (12:06 +0000)
committerMaria Dimashova <no@email>
Fri, 26 Nov 2010 12:06:07 +0000 (12:06 +0000)
doc/features2d_detection_description.tex

index 07d5547..60742f5 100644 (file)
@@ -414,7 +414,10 @@ public:
     // detects keypoints using fast multi-scale Hessian detector
     void operator()(const Mat& img, const Mat& mask,
                     vector<KeyPoint>& keypoints) const;
-    // detects keypoints and computes the SURF descriptors for them
+    // detects keypoints and computes the SURF descriptors for them;
+    // output vector "descriptors" stores elements of descriptors and has size 
+    // equal descriptorSize()*keypoints.size() as each descriptor is 
+    // descriptorSize() elements of this vector.
     void operator()(const Mat& img, const Mat& mask,
                     vector<KeyPoint>& keypoints,
                     vector<float>& descriptors,