CudaBackgroundSubtractorMOG Constructor |
http://www.emgu.com
Create a Gaussian Mixture-based Background/Foreground Segmentation model
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaBackgroundSubtractorMOG(
int history = 200,
int nMixtures = 4,
double backgroundRatio = 0.7,
double noiseSigma = 0
)
Public Sub New (
Optional history As Integer = 200,
Optional nMixtures As Integer = 4,
Optional backgroundRatio As Double = 0.7,
Optional noiseSigma As Double = 0
)
public:
CudaBackgroundSubtractorMOG(
int history = 200,
int nMixtures = 4,
double backgroundRatio = 0.7,
double noiseSigma = 0
)
new :
?history : int *
?nMixtures : int *
?backgroundRatio : float *
?noiseSigma : float
(* Defaults:
let _history = defaultArg history 200
let _nMixtures = defaultArg nMixtures 4
let _backgroundRatio = defaultArg backgroundRatio 0.7
let _noiseSigma = defaultArg noiseSigma 0
*)
-> CudaBackgroundSubtractorMOG
Parameters
- history (Optional)
- Type: SystemInt32
[Missing <param name="history"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG.#ctor(System.Int32,System.Int32,System.Double,System.Double)"]
- nMixtures (Optional)
- Type: SystemInt32
[Missing <param name="nMixtures"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG.#ctor(System.Int32,System.Int32,System.Double,System.Double)"]
- backgroundRatio (Optional)
- Type: SystemDouble
[Missing <param name="backgroundRatio"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG.#ctor(System.Int32,System.Int32,System.Double,System.Double)"]
- noiseSigma (Optional)
- Type: SystemDouble
[Missing <param name="noiseSigma"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG.#ctor(System.Int32,System.Int32,System.Double,System.Double)"]
See Also