-1

Please, anybody can explain to me why on OpenCV MOG2 function for background substraction i can't found the implementation of Probability Density Function ?

There is any trick on the proposed implementation ?

Botje
  • 26,269
  • 3
  • 31
  • 41
Rita
  • 1
  • 2
  • Please provide more details about your question so we can better assist you. Check out this guide on how to post good questions: https://stackoverflow.com/help/how-to-ask – T. Short Dec 25 '19 at 11:24

1 Answers1

0

Here is the paper : Improved Adaptive Gaussian Mixture Model for Background Subtraction

Class reference : cv::BackgroundSubtractorMOG2 Class

Implementation : bgfg_gaussmix2.cpp

The trick as mentioned in the implementation: "Number of Gaussian components is adapted per pixel."

Ziri
  • 718
  • 7
  • 16