Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
This directory contains a 'cleaned' version of the SuBSENSE method configuration as presented in
the 2014 CVPRW paper 'Flexible Background Subtraction With Self-Balanced Local Sensitivity'.

The main class used for background subtraction is BackgroundSubtractionSuBSENSE; all other files
contain either dependencies, utilities or interfaces for this method. It is based on OpenCV's
BackgroundSubtractor interface, and has been tested with versions 2.4.5 and 2.4.7. By default,
its constructor uses the parameters suggested in the paper.


TL;DR :

BackgroundSubtractorSuBSENSE bgs(...);
bgs.initialize(...);
for(all frames in the video) {
    ...
    bgs(input,output);
    ...
}


See LICENSE.txt for terms of use and contact information.