CudaBackgroundSubtractorGMG Constructor |
http://www.emgu.com
Create a Background/Foreground Segmentation model
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic CudaBackgroundSubtractorGMG(
int initializationFrames = 120,
double decisionThreshold = 0.8
)
Public Sub New (
Optional initializationFrames As Integer = 120,
Optional decisionThreshold As Double = 0.8
)
public:
CudaBackgroundSubtractorGMG(
int initializationFrames = 120,
double decisionThreshold = 0.8
)
new :
?initializationFrames : int *
?decisionThreshold : float
(* Defaults:
let _initializationFrames = defaultArg initializationFrames 120
let _decisionThreshold = defaultArg decisionThreshold 0.8
*)
-> CudaBackgroundSubtractorGMG
Parameters
- initializationFrames (Optional)
- Type: SystemInt32
The number of frames used for initialization - decisionThreshold (Optional)
- Type: SystemDouble
The decision threshold
See Also