Creates a CNT Background Subtractor
bs = cv.BackgroundSubtractorCNT()
bs = cv.BackgroundSubtractorCNT('OptionName', optionValue, ...)
Options
- MinPixelStability number of frames with same pixel color
to consider stable. default 15
- MaxPixelStability maximum allowed credit for a pixel in
history. default 15*60
- UseHistory determines if we're giving a pixel credit for
being stable for a long time. default true
- IsParallel determines if we're parallelizing the algorithm.
default true