Creates a LSBP Background Subtractor
bs = cv.BackgroundSubtractorLSBP()
bs = cv.BackgroundSubtractorLSBP('OptionName', optionValue, ...)
Options
- MotionCompensation Whether to use camera motion
compensation. One of:
- NSamples Number of samples to maintain at each point of
the frame. default 20
- LSBPRadius LSBP descriptor radius. default 16
- TLower Lower bound for T-values. See [LGuo2016] for
details. default 2.0
- TUpper Upper bound for T-values. See [LGuo2016] for
details. default 32.0
- TInc Increase step for T-values. See [LGuo2016] for
details. default 1.0
- TDec Decrease step for T-values. See [LGuo2016] for
details. default 0.05
- RScale Scale coefficient for threshold values. default 10.0
- RIncDec Increase/Decrease step for threshold values.
default 0.005
- NoiseRemovalThresholdFacBG Strength of the noise removal
for background points. default 0.0004
- NoiseRemovalThresholdFacFG Strength of the noise removal
for foreground points. default 0.0008
- LSBPThreshold Threshold for LSBP binary string. default 8
- MinCount Minimal number of matches for sample to be
considered as foreground. default 2