CudaBackgroundSubtractorMOG2 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 CudaBackgroundSubtractorMOG2(
int history = 500,
double varThreshold = 16,
bool detectShadows = true
)
Public Sub New (
Optional history As Integer = 500,
Optional varThreshold As Double = 16,
Optional detectShadows As Boolean = true
)
public:
CudaBackgroundSubtractorMOG2(
int history = 500,
double varThreshold = 16,
bool detectShadows = true
)
new :
?history : int *
?varThreshold : float *
?detectShadows : bool
(* Defaults:
let _history = defaultArg history 500
let _varThreshold = defaultArg varThreshold 16
let _detectShadows = defaultArg detectShadows true
*)
-> CudaBackgroundSubtractorMOG2
Parameters
- history (Optional)
- Type: SystemInt32
[Missing <param name="history"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG2.#ctor(System.Int32,System.Double,System.Boolean)"]
- varThreshold (Optional)
- Type: SystemDouble
[Missing <param name="varThreshold"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG2.#ctor(System.Int32,System.Double,System.Boolean)"]
- detectShadows (Optional)
- Type: SystemBoolean
[Missing <param name="detectShadows"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG2.#ctor(System.Int32,System.Double,System.Boolean)"]
See Also