Commit 741a689f authored by Andrey Kamaev's avatar Andrey Kamaev

Improved RST parser; fixed small typos found by new parser

parent edf0b40d
...@@ -176,6 +176,8 @@ The structure ``CvGraphScanner`` is used for depth-first graph traversal. See di ...@@ -176,6 +176,8 @@ The structure ``CvGraphScanner`` is used for depth-first graph traversal. See di
CvTreeNodeIterator CvTreeNodeIterator
------------------ ------------------
.. ocv:struct:: CvTreeNodeIterator
The structure ``CvTreeNodeIterator`` is used to traverse trees of sequences. The structure ``CvTreeNodeIterator`` is used to traverse trees of sequences.
ClearGraph ClearGraph
......
...@@ -2398,7 +2398,7 @@ For some values of ``p`` , such as integer values, 0.5 and -0.5, specialized fas ...@@ -2398,7 +2398,7 @@ For some values of ``p`` , such as integer values, 0.5 and -0.5, specialized fas
RNG RNG
--- ---
.. ocv:class: RNG .. ocv:class:: RNG
Random number generator. It encapsulates the state (currently, a 64-bit integer) and has methods to return scalar random values and to fill arrays with random values. Currently it supports uniform and Gaussian (normal) distributions. The generator uses Multiply-With-Carry algorithm, introduced by G. Marsaglia ( Random number generator. It encapsulates the state (currently, a 64-bit integer) and has methods to return scalar random values and to fill arrays with random values. Currently it supports uniform and Gaussian (normal) distributions. The generator uses Multiply-With-Carry algorithm, introduced by G. Marsaglia (
http://en.wikipedia.org/wiki/Multiply-with-carry http://en.wikipedia.org/wiki/Multiply-with-carry
......
...@@ -7,7 +7,7 @@ Matrix Reductions ...@@ -7,7 +7,7 @@ Matrix Reductions
gpu::meanStdDev gpu::meanStdDev
------------------- -------------------
.. cpp:function:: void gpu::meanStdDev(const GpuMat\& mtx, Scalar\& mean, Scalar\& stddev) .. ocv:function:: void gpu::meanStdDev(const GpuMat\& mtx, Scalar\& mean, Scalar\& stddev)
Computes a mean value and a standard deviation of matrix elements. Computes a mean value and a standard deviation of matrix elements.
......
This diff is collapsed.
...@@ -480,7 +480,7 @@ Updates the predicted state from the measurement. ...@@ -480,7 +480,7 @@ Updates the predicted state from the measurement.
BackgroundSubtractor BackgroundSubtractor
-------------------- --------------------
.. ocv:class: BackgroundSubtractor .. ocv:class:: BackgroundSubtractor
Base class for background/foreground segmentation. :: Base class for background/foreground segmentation. ::
...@@ -522,7 +522,7 @@ Computes a background image. ...@@ -522,7 +522,7 @@ Computes a background image.
BackgroundSubtractorMOG BackgroundSubtractorMOG
----------------------- -----------------------
.. ocv:class: BackgroundSubtractorMOG : public BackgroundSubtractor .. ocv:class:: BackgroundSubtractorMOG : public BackgroundSubtractor
Gaussian Mixture-based Backbround/Foreground Segmentation Algorithm. Gaussian Mixture-based Backbround/Foreground Segmentation Algorithm.
...@@ -567,7 +567,7 @@ BackgroundSubtractorMOG2 ...@@ -567,7 +567,7 @@ BackgroundSubtractorMOG2
------------------------ ------------------------
Gaussian Mixture-based Backbround/Foreground Segmentation Algorithm. Gaussian Mixture-based Backbround/Foreground Segmentation Algorithm.
.. ocv:class: BackgroundSubtractorMOG2 : public BackgroundSubtractor .. ocv:class:: BackgroundSubtractorMOG2 : public BackgroundSubtractor
Here are important members of the class that control the algorithm, which you can set after constructing the class instance: Here are important members of the class that control the algorithm, which you can set after constructing the class instance:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment