How can I get the reference background image for each instance of video

3 views (last 30 days)
I am using the Matlab 2012 version with computer vision system toolbox. I have obtained the foreground mask for each frame in the video by system object i.e. vision.ForegroundDetector. For some pre-processing purpose I need the reference background image that is used by this system object for each instance of video. How can I obtain it? or Should I need to implement the foregroud detection algorithm myself?

Answers (2)

Anand
Anand on 13 Nov 2013
Does this mean you would like the part of the background behind whatever the foreground object is? I don't think getting that is a feasible expectation from any foreground detection algorithm.
Here's why:
Say you have a video of a man standing behind a table, completely covering the table. Foreground detection can determine the man being the foreground object because of movement but there's no way to tell that there's a table behind the man given that there's no image evidence of the table existing.
If my understanding of your question is incorrect, please explain it some more.
Hope that helps.
  1 Comment
Lajari
Lajari on 14 Nov 2013
I have set the parameter 'NumTrainingFrames' to 5 for the system object vision.ForegroundDetector. That means detection algorithm uses first 5 frame for modelling initial background. This background is updated for every next frame.I only know that system object uses the gaussian mixture modelling for building the foreground mask for every frame.but I need to know the updated reference background that is used by the algorithm for every instance of the video for detecting the foreground mask.

Sign in to comment.


Image Analyst
Image Analyst on 13 Nov 2013
If you assume that the background is the plain scene with no objects, and the foreground are objects that pass through (cars, people, etc.). You might assume that the background is the mode of all the frames. I think that a lot of people use Gaussian Mixture Models to do this kind of foreground/background discrimination.
  2 Comments
Lajari
Lajari on 14 Nov 2013
I have set the parameter 'NumTrainingFrames' to 5 for the system object vision.ForegroundDetector. That means detection algorithm uses first 5 frame for modelling initial background. This background is updated for every next frame.I only know that system object uses the gaussian mixture modelling for building the foreground mask for every frame.but I need to know the updated reference background that is used by the algorithm for every instance of the video for detecting the foreground mask.
Image Analyst
Image Analyst on 14 Nov 2013
Sorry, I don't have the Computer Vision System Toolbox. You can call the Mathworks for advice.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!