From d069396546cf49a1bfa782e176cb0ae74c13790f Mon Sep 17 00:00:00 2001 From: Alexander Shishkov Date: Thu, 15 Sep 2011 08:31:14 +0000 Subject: [PATCH] fixed problem in rst files changed OpenCV version to 2.3.2 --- doc/conf.py | 2 +- modules/imgproc/doc/motion_analysis_and_object_tracking.rst | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index cce41878dc..5e41e79148 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ copyright = u'2011, opencv dev team' # The short X.Y version. version = '2.3' # The full version, including alpha/beta/rc tags. -release = '2.3' +release = '2.3.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/modules/imgproc/doc/motion_analysis_and_object_tracking.rst b/modules/imgproc/doc/motion_analysis_and_object_tracking.rst index e6b0996120..8e944e86d6 100644 --- a/modules/imgproc/doc/motion_analysis_and_object_tracking.rst +++ b/modules/imgproc/doc/motion_analysis_and_object_tracking.rst @@ -149,6 +149,7 @@ The function is used to detect translational shifts that occur between two image Calculates the cross-power spectrum of two supplied source arrays. The arrays are padded if needed with ``getOptimalDFTSize`` . .. ocv:function:: Point2d phaseCorrelate(InputArray src1, InputArray src2, InputArray window = noArray()) + :param src1: Source floating point array (CV_32FC1 or CV_64FC1) :param src2: Source floating point array (CV_32FC1 or CV_64FC1) :param window: Floating point array with windowing coefficients to reduce edge effects (optional). @@ -196,6 +197,7 @@ createHanningWindow This function computes a Hanning window coefficients in two dimensions. See http://en.wikipedia.org/wiki/Hann\_function and http://en.wikipedia.org/wiki/Window\_function for more information. .. ocv:function:: void createHanningWindow(OutputArray dst, Size winSize, int type) + :param dst: Destination array to place Hann coefficients in :param winSize: The window size specifications :param type: Created array type