OpenCV3.1背景减法

时间:2017-06-23 12:21:42

标签: python opencv video-processing

有人可以向我解释参数" 历史"," varThreshold "和" detectShadow "在 cv2.createBackgroundSubtractorMOG2()方法中工作?

1 个答案:

答案 0 :(得分:0)

基本上,背景减法器会分析图像并移除“静止”像素 根据{{​​3}},history可能是您考虑了解静止像素的时间量(以帧为单位),varThreshold是阈值距离(马哈拉诺比斯距离平方)您用于选择是否仍然是一个像素,detectShadow告诉算法检测场景中的阴影并标记它们。