gpt4 book ai didi

MOG、MOG2 和 GMG 之间的区别

转载 作者:行者123 更新时间:2023-12-04 03:26:27 34 4
gpt4 key购买 nike

这三种背景减法有什么区别?

最佳答案

您可以引用this link .

为此目的引入了几种算法。 OpenCV 已经实现了三种非常容易使用的算法。我们将一一看到它们。

BackgroundSubtractorMOG

It is a Gaussian Mixture-based Background/Foreground Segmentation Algorithm. It was introduced in the paper "An improved adaptive background mixture model for real-time tracking with shadow detection" by P. KadewTraKuPong and R. Bowden in 2001. It uses a method to model each background pixel by a mixture of K Gaussian distributions (K = 3 to 5). The weights of the mixture represent the time proportions that those colours stay in the scene. The probable background colours are the ones which stay longer and more static.

While coding, we need to create a background object using the function, cv2.createBackgroundSubtractorMOG(). It has some optional parameters like length of history, number of gaussian mixtures, threshold etc. It is all set to some default values. Then inside the video loop, use backgroundsubtractor.apply() method to get the foreground mask.

See a simple example below:

1 import numpy as np
2 import cv2
3
4 cap = cv2.VideoCapture('vtest.avi')
5
6 fgbg = cv2.createBackgroundSubtractorMOG()
7
8 while(1):
9 ret, frame = cap.read()
10
11 fgmask = fgbg.apply(frame)
12
13 cv2.imshow('frame',fgmask)
14 k = cv2.waitKey(30) & 0xff
15 if k == 27:
16 break
17
18 cap.release()
19 cv2.destroyAllWindows()

( All the results are shown at the end for comparison).

BackgroundSubtractorMOG2

It is also a Gaussian Mixture-based Background/Foreground Segmentation Algorithm. It is based on two papers by Z.Zivkovic, "Improved adaptive Gausian mixture model for background subtraction" in 2004 and "Efficient Adaptive Density Estimation per Image Pixel for the Task of Background Subtraction" in 2006. One important feature of this algorithm is that it selects the appropriate number of gaussian distribution for each pixel. (Remember, in last case, we took a K gaussian distributions throughout the algorithm). It provides better adaptibility to varying scenes due illumination changes etc.

As in previous case, we have to create a background subtractor object. Here, you have an option of selecting whether shadow to be detected or not. If detectShadows = True (which is so by default), it detects and marks shadows, but decreases the speed. Shadows will be marked in gray color.

1 import numpy as np
2 import cv2
3
4 cap = cv2.VideoCapture('vtest.avi')
5
6 fgbg = cv2.createBackgroundSubtractorMOG2()
7
8 while(1):
9 ret, frame = cap.read()
10
11 fgmask = fgbg.apply(frame)
12
13 cv2.imshow('frame',fgmask)
14 k = cv2.waitKey(30) & 0xff
15 if k == 27:
16 break
17
18 cap.release()
19 cv2.destroyAllWindows()

(Results given at the end)

BackgroundSubtractorGMG

This algorithm combines statistical background image estimation and per-pixel Bayesian segmentation. It was introduced by Andrew B. Godbehere, Akihiro Matsukawa, Ken Goldberg in their paper "Visual Tracking of Human Visitors under Variable-Lighting Conditions for a Responsive Audio Art Installation" in 2012. As per the paper, the system ran a successful interactive audio art installation called “Are We There Yet?” from March 31 - July 31 2011 at the Contemporary Jewish Museum in San Francisco, California.

It uses first few (120 by default) frames for background modelling. It employs probabilistic foreground segmentation algorithm that identifies possible foreground objects using Bayesian inference. The estimates are adaptive; newer observations are more heavily weighted than old observations to accommodate variable illumination. Several morphological filtering operations like closing and opening are done to remove unwanted noise. You will get a black window during first few frames.

It would be better to apply morphological opening to the result to remove the noises.

1 import numpy as np
2 import cv2
3
4 cap = cv2.VideoCapture('vtest.avi')
5
6 kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(3,3))
7 fgbg = cv2.createBackgroundSubtractorGMG()
8
9 while(1):
10 ret, frame = cap.read()
11
12 fgmask = fgbg.apply(frame)
13 fgmask = cv2.morphologyEx(fgmask, cv2.MORPH_OPEN, kernel)
14
15 cv2.imshow('frame',fgmask)
16 k = cv2.waitKey(30) & 0xff
17 if k == 27:
18 break
19
20 cap.release()
21 cv2.destroyAllWindows()


在较新版本的 OpenCV 通用汽车摩格 可通过 贡献 ( opencv-contrib-python==3.4.2.16 ) 在 bgsegm 子模块:
cv2.bgsegm.createBackgroundSubtractorGMG()
cv2.bgsegm.createBackgroundSubtractorMOG()

关于MOG、MOG2 和 GMG 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33266239/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com