Commit f14d80ab authored by Andrey Kamaev's avatar Andrey Kamaev

Minor documentation fix

parent 33134ecb
...@@ -182,14 +182,17 @@ Returns ``true`` if the Gaussian mixture model was trained. ...@@ -182,14 +182,17 @@ Returns ``true`` if the Gaussian mixture model was trained.
EM::read, EM::write EM::read, EM::write
------------------- -------------------
See :ocv:function:`Algorithm::read` and :ocv:function:`Algorithm::write`. See :ocv:func:`Algorithm::read` and :ocv:func:`Algorithm::write`.
EM::get EM::get, EM::set
------- ----------------
See :ocv:function:`Algorithm::get`. The following parameters are available for getting: See :ocv:func:`Algorithm::get` and :ocv:func:`Algorithm::set`. The following parameters are available:
* ``"nclusters"`` * ``"nclusters"``
* ``"covMatType"`` * ``"covMatType"``
* ``"weights"`` * ``"maxIters"``
* ``"means"`` * ``"epsilon"``
* ``"covs"`` * ``"weights"`` *(read-only)*
* ``"means"`` *(read-only)*
* ``"covs"`` *(read-only)*
..
...@@ -404,11 +404,11 @@ Updates the predicted state from the measurement. ...@@ -404,11 +404,11 @@ Updates the predicted state from the measurement.
BackgroundSubtractor BackgroundSubtractor
-------------------- --------------------
.. ocv:class:: BackgroundSubtractor .. ocv:class:: BackgroundSubtractor : public Algorithm
Base class for background/foreground segmentation. :: Base class for background/foreground segmentation. ::
class BackgroundSubtractor class BackgroundSubtractor : public Algorithm
{ {
public: public:
virtual ~BackgroundSubtractor(); virtual ~BackgroundSubtractor();
......
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