BackgroundSubtractorGMG Constructor |
http://www.emgu.com
Create a background subtractor module based on GMG
Namespace: Emgu.CV.BgSegmAssembly: Emgu.CV.Contrib (in Emgu.CV.Contrib.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic BackgroundSubtractorGMG(
int initializationFrames,
double decisionThreshold
)
Public Sub New (
initializationFrames As Integer,
decisionThreshold As Double
)
public:
BackgroundSubtractorGMG(
int initializationFrames,
double decisionThreshold
)
new :
initializationFrames : int *
decisionThreshold : float -> BackgroundSubtractorGMG
Parameters
- initializationFrames
- Type: SystemInt32
Number of frames used to initialize the background models. - decisionThreshold
- Type: SystemDouble
Threshold value, above which it is marked foreground, else background.
See Also