Clarified DescriptorExtractor::compute
authorPhilLab <PhilLab@users.noreply.github.com>
Thu, 3 Jul 2014 10:29:33 +0000 (12:29 +0200)
committerunknown <PhilLab@users.noreply.github.com>
Fri, 18 Jul 2014 08:57:54 +0000 (10:57 +0200)
modules/features2d/doc/common_interfaces_of_descriptor_extractors.rst

index de3d99c..d8bbc7f 100644 (file)
@@ -64,7 +64,7 @@ Computes the descriptors for a set of keypoints detected in an image (first vari
 
     :param images: Image set.
 
-    :param keypoints: Input collection of keypoints. Keypoints for which a descriptor cannot be computed are removed. Sometimes new keypoints can be added, for example: ``SIFT`` duplicates keypoint with several dominant orientations (for each orientation).
+    :param keypoints: Input collection of keypoints. Keypoints for which a descriptor cannot be computed are removed and the remaining ones may be reordered. Sometimes new keypoints can be added, for example: ``SIFT`` duplicates a keypoint with several dominant orientations (for each orientation).
 
     :param descriptors: Computed descriptors. In the second variant of the method ``descriptors[i]`` are descriptors computed for a ``keypoints[i]``. Row ``j`` is the ``keypoints`` (or ``keypoints[i]``) is the descriptor for keypoint ``j``-th keypoint.