BackgroundSubtractorGMG Constructor |
http://www.emgu.com
Create a background subtractor module based on GMG
Namespace:
Emgu.CV.BgSegm
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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