From 7ad698f0768da0b23f187740b38fef45b11a7536 Mon Sep 17 00:00:00 2001 From: Elena Fedotova Date: Sun, 8 May 2011 09:09:39 +0000 Subject: [PATCH] Purpose: updated the feature2d chapter --- ...wing_function_of_keypoints_and_matches.rst | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/modules/features2d/doc/drawing_function_of_keypoints_and_matches.rst b/modules/features2d/doc/drawing_function_of_keypoints_and_matches.rst index c92054ef75..e29391c61d 100644 --- a/modules/features2d/doc/drawing_function_of_keypoints_and_matches.rst +++ b/modules/features2d/doc/drawing_function_of_keypoints_and_matches.rst @@ -10,27 +10,27 @@ drawMatches .. c:function:: void drawMatches( const Mat& img1, const vector& keypoints1, const Mat& img2, const vector& keypoints2, const vector >& matches1to2, Mat& outImg, const Scalar& matchColor=Scalar::all(-1), const Scalar& singlePointColor=Scalar::all(-1), const vector>& matchesMask= vector >(), int flags=DrawMatchesFlags::DEFAULT ) - :param img1: First source image. + :param img1: The first source image. - :param keypoints1: Keypoints from first source image. + :param keypoints1: Keypoints from the first source image. - :param img2: Second source image. + :param img2: The second source image. - :param keypoints2: Keypoints from second source image. + :param keypoints2: Keypoints from the second source image. - :param matches: Matches from first image to second one, i.e. ``keypoints1[i]`` has corresponding point ``keypoints2[matches[i]]`` . + :param matches: Matches from the first image to the second one, which means that ``keypoints1[i]`` has a corresponding point in ``keypoints2[matches[i]]`` . - :param outImg: Output image. Its content depends on ``flags`` value what is drawn in output image. See below possible ``flags`` bit values. + :param outImg: Output image. Its content depends on the ``flags`` value defining what is drawn in the output image. See possible ``flags`` bit values below. - :param matchColor: Color of matches (lines and connected keypoints). If ``matchColor==Scalar::all(-1)`` color will be generated randomly. + :param matchColor: Color of matches (lines and connected keypoints). If ``matchColor==Scalar::all(-1)`` , the color is generated randomly. - :param singlePointColor: Color of single keypoints (circles), i.e. keypoints not having the matches. If ``singlePointColor==Scalar::all(-1)`` color will be generated randomly. + :param singlePointColor: Color of single keypoints (circles), which means that keypoints do not have the matches. If ``singlePointColor==Scalar::all(-1)`` , the color is generated randomly. - :param matchesMask: Mask determining which matches will be drawn. If mask is empty all matches will be drawn. + :param matchesMask: Mask determining which matches are drawn. If the mask is empty, all matches are drawn. - :param flags: Each bit of ``flags`` sets some feature of drawing. Possible ``flags`` bit values is defined by ``DrawMatchesFlags``. + :param flags: Flags setting drawing features. Possible ``flags`` bit values are defined by ``DrawMatchesFlags``. -This function draws matches of keypints from two images on output image. Match is a line connecting two keypoints (circles). The structure ``DrawMatchesFlags`` is defined as follows: +This function draws matches of keypints from two images in the output image. Match is a line connecting two keypoints (circles). The structure ``DrawMatchesFlags`` is defined as follows: .. code-block:: cpp @@ -40,16 +40,16 @@ This function draws matches of keypints from two images on output image. Match i { DEFAULT = 0, // Output image matrix will be created (Mat::create), // i.e. existing memory of output image may be reused. - // Two source image, matches and single keypoints + // Two source images, matches, and single keypoints // will be drawn. - // For each keypoint only the center point will be - // drawn (without the circle around keypoint with + // For each keypoint, only the center point will be + // drawn (without a circle around the keypoint with the // keypoint size and orientation). DRAW_OVER_OUTIMG = 1, // Output image matrix will not be // created (using Mat::create). Matches will be drawn // on existing content of output image. NOT_DRAW_SINGLE_POINTS = 2, // Single keypoints will not be drawn. - DRAW_RICH_KEYPOINTS = 4 // For each keypoint the circle around + DRAW_RICH_KEYPOINTS = 4 // For each keypoint, the circle around // keypoint with keypoint size and orientation will // be drawn. }; @@ -63,15 +63,15 @@ drawKeypoints ----------------- .. c:function:: void drawKeypoints( const Mat& image, const vector& keypoints, Mat& outImg, const Scalar& color=Scalar::all(-1), int flags=DrawMatchesFlags::DEFAULT ) - Draw keypoints. + Draws keypoints. :param image: Source image. - :param keypoints: Keypoints from source image. + :param keypoints: Keypoints from the source image. - :param outImg: Output image. Its content depends on ``flags`` value what is drawn in output image. See possible ``flags`` bit values. + :param outImg: Output image. Its content depends on the ``flags`` value defining what is drawn in the output image. See possible ``flags`` bit values below. :param color: Color of keypoints. - :param flags: Each bit of ``flags`` sets some feature of drawing. Possible ``flags`` bit values is defined by ``DrawMatchesFlags``, see above in :func:`drawMatches` . + :param flags: Flags setting drawing features. Possible ``flags`` bit values are defined by ``DrawMatchesFlags``. See details above in :ref:`drawMatches` .