Commit 0c10ed8f authored by Ilya Lysenkov's avatar Ilya Lysenkov

Minor doc fix

parent 2741dd0e
...@@ -378,9 +378,8 @@ BackgroundSubtractorMOG::operator() ...@@ -378,9 +378,8 @@ BackgroundSubtractorMOG::operator()
BackgroundSubtractorMOG::initialize BackgroundSubtractorMOG::initialize
------------------------------------------------ -----------------------------------
.. cpp:function:: void BackgroundSubtractorMOG::initialize(int a)
.. cpp:function: virtual void BackgroundSubtractorMOG::initialize(Size frameSize, int frameType)
Re-initiaization method. Re-initiaization method.
...@@ -402,9 +401,9 @@ The class implements the Gaussian mixture model background subtraction from: ...@@ -402,9 +401,9 @@ The class implements the Gaussian mixture model background subtraction from:
BackgroundSubtractorMOG2::BackgroundSubtractorMOG2 BackgroundSubtractorMOG2::BackgroundSubtractorMOG2
-------------------------------------------------- --------------------------------------------------
.. cpp:function: BackgroundSubtractorMOG2::BackgroundSubtractorMOG2() .. cpp:function:: BackgroundSubtractorMOG2::BackgroundSubtractorMOG2()
.. cpp:function: BackgroundSubtractorMOG2::BackgroundSubtractorMOG2(int history, float varThreshold, bool bShadowDetection=1) .. cpp:function:: BackgroundSubtractorMOG2::BackgroundSubtractorMOG2(int history, float varThreshold, bool bShadowDetection=1)
:param history: The length of the history. :param history: The length of the history.
...@@ -447,7 +446,7 @@ BackgroundSubtractorMOG2::operator() ...@@ -447,7 +446,7 @@ BackgroundSubtractorMOG2::operator()
BackgroundSubtractorMOG2::initialize BackgroundSubtractorMOG2::initialize
------------------------------------ ------------------------------------
.. cpp:function: virtual void BackgroundSubtractorMOG2::initialize(Size frameSize, int frameType) .. cpp:function:: virtual void BackgroundSubtractorMOG2::initialize(Size frameSize, int frameType)
Re-initiaization method. Re-initiaization method.
...@@ -455,7 +454,7 @@ BackgroundSubtractorMOG2::initialize ...@@ -455,7 +454,7 @@ BackgroundSubtractorMOG2::initialize
BackgroundSubtractorMOG2::getBackgroundImage BackgroundSubtractorMOG2::getBackgroundImage
-------------------------------------------- --------------------------------------------
.. cpp:function: virtual void BackgroundSubtractorMOG2::getBackgroundImage(OutputArray backgroundImage) const .. cpp:function:: virtual void BackgroundSubtractorMOG2::getBackgroundImage(OutputArray backgroundImage) const
Computes a background image which are the mean of all background gaussians. Computes a background image which are the mean of all background gaussians.
......
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