createBackgroundSubtractorMOG2 function
NewBackgroundSubtractorMOG2 returns a new BackgroundSubtractor algorithm of type MOG2. MOG2 is a Gaussian Mixture-based Background/Foreground Segmentation Algorithm.
For further details, please see: https://docs.opencv.org/master/de/de1/group__video__motion.html#ga2beb2dee7a073809ccec60f145b6b29c https://docs.opencv.org/master/d7/d7b/classcv_1_1BackgroundSubtractorMOG2.html
Implementation
BackgroundSubtractorMOG2 createBackgroundSubtractorMOG2({
int history = 500,
double varThreshold = 16,
bool detectShadows = true,
}) {
final p = calloc<cvg.BackgroundSubtractorMOG2>();
cvRun(
() => cvideo.cv_BackgroundSubtractorMOG2_create_1(
history,
varThreshold,
detectShadows,
p,
),
);
return BackgroundSubtractorMOG2(p);
}