From 7cc52490ece420d3a92f1e44cd3fa01e1502181e Mon Sep 17 00:00:00 2001 From: Elena Fedotova Date: Fri, 1 Jul 2011 21:09:31 +0000 Subject: [PATCH] Purpose: 2nd review cycle - final --- modules/imgproc/doc/feature_detection.rst | 4 ++-- .../imgproc/doc/structural_analysis_and_shape_descriptors.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/imgproc/doc/feature_detection.rst b/modules/imgproc/doc/feature_detection.rst index 870db3ff72..58bfe67bca 100644 --- a/modules/imgproc/doc/feature_detection.rst +++ b/modules/imgproc/doc/feature_detection.rst @@ -266,7 +266,7 @@ The function finds the most prominent corners in the image or in the specified i The function can be used to initialize a point-based tracker of an object. -**Note**: If the function is called with different values ``A`` and ``B`` of the parameter ``qualityLevel`` , and ``A`` > {B}, the vector of returned corners with ``qualityLevel=A`` will be the prefix of the output vector with ``qualityLevel=B`` . +.. note:: If the function is called with different values ``A`` and ``B`` of the parameter ``qualityLevel`` , and ``A`` > {B}, the vector of returned corners with ``qualityLevel=A`` will be the prefix of the output vector with ``qualityLevel=B`` . .. seealso:: @@ -340,7 +340,7 @@ Example: :: return 0; } -**Note**: Usually the function detects the centers of circles well. However, it may fail to find correct radii. You can assist to the function by specifying the radius range ( ``minRadius`` and ``maxRadius`` ) if you know it. Or, you may ignore the returned radius, use only the center, and find the correct radius using an additional procedure. +.. note:: Usually the function detects the centers of circles well. However, it may fail to find correct radii. You can assist to the function by specifying the radius range ( ``minRadius`` and ``maxRadius`` ) if you know it. Or, you may ignore the returned radius, use only the center, and find the correct radius using an additional procedure. .. seealso:: diff --git a/modules/imgproc/doc/structural_analysis_and_shape_descriptors.rst b/modules/imgproc/doc/structural_analysis_and_shape_descriptors.rst index ed391f85a1..9a7c0ee6af 100644 --- a/modules/imgproc/doc/structural_analysis_and_shape_descriptors.rst +++ b/modules/imgproc/doc/structural_analysis_and_shape_descriptors.rst @@ -67,7 +67,7 @@ The normalized central moments \texttt{nu} _{ji}= \frac{\texttt{mu}_{ji}}{\texttt{m}_{00}^{(i+j)/2+1}} . -**Note**: +.. note:: :math:`\texttt{mu}_{00}=\texttt{m}_{00}`, :math:`\texttt{nu}_{00}=1` :math:`\texttt{nu}_{10}=\texttt{mu}_{10}=\texttt{mu}_{01}=\texttt{mu}_{10}=0` , hence the values are not stored. @@ -155,7 +155,7 @@ Finds contours in a binary image. The function retrieves contours from the binary image using the algorithm [Suzuki85]_. The contours are a useful tool for shape analysis and object detection and recognition. See ``squares.c`` in the OpenCV sample directory. -**Note**: +.. note:: Source ``image`` is modified by this function.