fgbg = cv2.createBackgroundSubtractorMOG2(history=200, varThreshold=35, detectShadows=True)
时间: 2023-08-11 08:04:39 浏览: 238
Motion-Detection-Using-BackgroundSubtractorMOG2
这是一个使用 OpenCV 库创建基于 MOG2(Mixture of Gaussians)算法的背景减法器。该算法可以用于视频中的运动目标检测。其中,history 参数表示用于建立背景模型的帧数,varThreshold 参数表示像素颜色与背景模型不匹配的阈值,detectShadows 参数表示是否检测阴影。
阅读全文