回答編集履歴

2

append

2016/03/22 07:30

投稿

yohhoy
yohhoy

スコア6191

test CHANGED
@@ -3,3 +3,13 @@
3
3
 
4
4
 
5
5
  > 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.
6
+
7
+
8
+
9
+ ----
10
+
11
+ > ボールトラッキングをやっており、精度を上げるためにボールにつく影部分を除去したい
12
+
13
+
14
+
15
+ 目的から推測するに「ボールの陰(shade)」でしょうか?影(shadow)と陰(shade)は対象が異なるため、おそらく上記アルゴリズムは役に立たないと思います。

1

fix name

2016/03/22 07:30

投稿

yohhoy
yohhoy

スコア6191

test CHANGED
@@ -1,4 +1,4 @@
1
- 一応、OpenCVでも [影(shadow)検出アルゴリズム](http://docs.opencv.org/3.1.0/db/d5c/tutorial_py_bg_subtraction.html) `createBackgroundSubtractorMOG` が提供されます。(今回の例に適用できるか否かは、その要件によるかもしれません)
1
+ 一応、OpenCVでも [影(shadow)検出アルゴリズム](http://docs.opencv.org/3.1.0/db/d5c/tutorial_py_bg_subtraction.html) `BackgroundSubtractorMOG2` が提供されます。(今回の例に適用できるか否かは、その要件によるかもしれません)
2
2
 
3
3
 
4
4