VOOZH about

URL: https://www.geeksforgeeks.org/python/background-subtraction-opencv/

⇱ Background subtraction - OpenCV - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Background subtraction - OpenCV

Last Updated : 19 Feb, 2020
Background subtraction is a way of eliminating the background from image. To achieve this we extract the moving foreground from the static background. Background Subtraction has several use cases in everyday life, It is being used for object segmentation, security enhancement, pedestrian tracking, counting the number of visitors, number of vehicles in traffic etc. It is able to learn and identify the foreground mask. In OpenCV we have 3 algorithms to do this operation -
BackgroundSubtractorMOG - It is a Gaussian Mixture-based Background/Foreground Segmentation Algorithm. BackgroundSubtractorMOG2 - It is also a Gaussian Mixture-based Background/Foreground Segmentation Algorithm. It provides better adaptability to varying scenes due illumination changes etc. BackgroundSubtractorGMG - This algorithm combines statistical background image estimation and per-pixel Bayesian segmentation.
How to apply OpenCV in-built functions for background subtraction - Step #1 - Create an object to signify the algorithm we are using for background subtraction. Step #2 - Apply backgroundsubtractor.apply() function on image. Below is the Python implementation for Background subtraction - Output: 👁 Image
👁 Image
👁 Image
👁 Image
  We can see that there is a lot of noise in the resultant image for BackgroundSubtractorGMG, hence it is always preferred to use morphological transformation to the result to remove the noises.
Comment