Code Monkey home page Code Monkey logo

bgslibrary's Introduction

BGSLibrary

A Background Subtraction Library

Last Page Update: 22/02/2014

Latest Library Version: 1.9.0 (see Release Notes for more info)

The BGSLibrary was developed by Andrews Sobral and provides a C++ framework to perform background subtraction (BGS). The code works either on Windows or on Linux. Currently the library offers 34 BGS algorithms (the PBAS algorithm was removed from BGSLibrary because it is based on patented algorithm ViBE). A large amount of algorithms were provided by several authors. The source code is available under GNU GPL v3 license, the library is free and open source for academic purposes. Any user can be download latest project source code using SVN client. In Windows, a demo project for Visual Studio 2010 is provided. An executable version of BGSLibrary is available for Windows 32 bits and 64 bits. For Linux users, a Makefile can be used to compile all files and generate an executable example.

Have you found this software useful? Consider donating US$10 so it can get even better!

This software is completely free and will always stay free. Enjoy!

Citation

If you use this library for your publications, please cite it as:

@inproceedings{bgslibrary,
author    = {Sobral, Andrews},
title     = {{BGSLibrary}: An OpenCV C++ Background Subtraction Library},
booktitle = {IX Workshop de Visão Computacional (WVC'2013)},
address   = {Rio de Janeiro, Brazil},
year      = {2013},
month     = {Jun},
url       = {http://iris.sel.eesc.usp.br/wvc/Anais_WVC2013/Poster/2/15.pdf}
} 

Some algorithms of the BGSLibrary was used successfully in the following papers:

  • (2014) Sobral, Andrews; Vacavant, Antoine. A comprehensive review of background subtraction algorithms evaluated with synthetic and real videos. Computer Vision and Image Understanding (CVIU), 2014.
  • (2013) Sobral, Andrews; Oliveira, Luciano; Schnitman, Leizer; Souza, Felippe. (Best Paper Award) Highway Traffic Congestion Classification Using Holistic Properties. In International Conference on Signal Processing, Pattern Recognition and Applications (SPPRA'2013), Innsbruck, Austria, Feb 2013.

List of the algorithms available in BGSLibrary

  • Basic methods, mean and variance over time:

    • Static Frame Difference
    • Frame Difference
    • Weighted Moving Mean
    • Weighted Moving Variance
    • Adaptive Background Learning
    • Adaptive-Selective Background Learning
    • (1) Temporal Mean
    • (1) Adaptive Median of McFarlane and Schofield (1995) (paper)
    • (1) Temporal Median of Cucchiara et al (2003) and Calderara et al (2006) (paper1) (paper2) (paper3)
  • Fuzzy based methods:

    • (2) Fuzzy Sugeno Integral (with Adaptive-Selective Update) of Hongxun Zhang and De Xu (2006) (paper)
    • (2) Fuzzy Choquet Integral (with Adaptive-Selective Update) of Baf et al (2008) (paper)
    • (3) Fuzzy Gaussian of Laurence Bender (adapted version of Wren (1997) with Sigari et al (2008) approach) (paper)
  • Statistical methods using one gaussian:

    • (1) Gaussian Average of Wren (1997) (paper)
    • (3) Simple Gaussian of Benezeth et al (2008) (paper)
  • Statistical methods using multiple gaussians:

    • (1) Gaussian Mixture Model of Stauffer and Grimson (1999) (paper)
    • (0) Gaussian Mixture Model of KadewTraKuPong and Bowden (2001) (paper)
    • (0) Gaussian Mixture Model of Zivkovic (2004) (paper1) (paper2)
    • (1) Gaussian Mixture Model of Zivkovic (2004)
    • (3) Gaussian Mixture Model of Laurence Bender (implements the classic GMM with Mahalanobis distance) (paper)
  • Type-2 Fuzzy based methods:

    • (2) Type-2 Fuzzy GMM-UM of Baf et al (2008) (paper)
    • (2) Type-2 Fuzzy GMM-UV of Baf et al (2008) (paper)
    • (2) Type-2 Fuzzy GMM-UM with MRF of Zhao et al (2012) (paper1) (paper2)
    • (2) Type-2 Fuzzy GMM-UV with MRF of Zhao et al (2012) (paper1) (paper2)
  • Statistical methods using color and texture features:

    • (1) Texture BGS of Heikkila et al. (2006) (paper)
    • (8) Texture-Based Foreground Detection with MRF of Csaba Kertész (2011) (paper)
    • (4) Multi-Layer BGS of Jian Yao and Jean-Marc Odobez (2007) (paper)
    • (10) MultiCue BGS of SeungJong Noh and Moongu Jeon (2012) (paper)
  • Non-parametric methods:

    • (5) Pixel-Based Adaptive Segmenter (PBAS) of Hofmann et al (2012) The PBAS algorithm was removed from BGSLibrary because it is based on patented algorithm ViBE. (paper)
    • (0) GMG of Godbehere et al (2012) (paper)
    • (6) VuMeter of Goyat et al (2006) (paper)
    • (7) KDE of Elgammal et al (2000) (paper)
    • (9) IMBS of Domenico Bloisi and Luca Iocchi (2012) (paper)
  • Eigenspace-based methods:

    • (1) Eigenbackground / SL-PCA of Oliver et al (2000) (paper)
  • Neural and neuro-fuzzy methods:

    • (3) Adaptive SOM of Maddalena and Petrosino (2008) (paper)
    • (3) Fuzzy Adaptive SOM of Maddalena and Petrosino (2010) (paper)

Legend:

Download links

  • BGSLibrary v1.9.0 with MFC GUI v1.4.0 (x86/x64) (+src)

https://github.com/andrewssobral/bgslibrary/blob/master/binaries/mfc_bgslibrary_x86_v1.4.0.7z

  • BGSLibrary v1.5.0 with Java GUI for Windows 32bits (x86)

https://github.com/andrewssobral/bgslibrary/blob/master/binaries/bgs_library_x86_v1.5.0_with_gui.7z

  • BGSLibrary v1.5.0 with Java GUI for Windows 64bits (x64)

https://github.com/andrewssobral/bgslibrary/blob/master/binaries/bgs_library_x64_v1.5.0_with_gui.7z

MFC BGSLibrary

Videos

For Linux users

Check out latest project source code.

Read instructions in README.txt file.

How to use BGS Library in other C++ code

Download latest project source code, copy package_bgs directory to your project and create config folder (bgslibrary use it to store xml configuration files). For Windows users, a demo project for Visual Studio 2010 is provided.

See Demo.cpp example source code at: https://github.com/andrewssobral/bgslibrary/blob/master/Demo.cpp

Example code

#include <iostream>
#include <cv.h>
#include <highgui.h>

#include "package_bgs/FrameDifferenceBGS.h"

void main(int argc, char **argv)
{
  CvCapture *capture = 0;
  capture = cvCaptureFromCAM(0);
  
  if(!capture){
    std::cerr << "Cannot initialize video!" << std::endl;
    return;
  }
  
  IBGS *bgs;
  bgs = new FrameDifferenceBGS;
  
  IplImage *frame;
  int key = 0;
  while(key != 'q')
  {
    frame = cvQueryFrame(capture);
    if(!frame) break;

    cv::Mat img_input(frame);
    cv::imshow("Input", img_input);

    cv::Mat img_mask;
    cv::Mat img_bkgmodel;
    
    // by default, it shows automatically the foreground mask image
    bgs->process(img_input, img_mask, img_bkgmodel);
    
    //if(!img_mask.empty())
    //  cv::imshow("Foreground", img_mask);
    //  do something
    
    key = cvWaitKey(33);
  }

  delete bgs;

  cvDestroyAllWindows();
  cvReleaseCapture(&capture);
}

Best public video databases

Alt text

Project Diagram

Java GUI

Release Notes:

  • Version 1.9.0: Added A New Framework for Background Subtraction Using Multiple Cues (SJN_MultiCueBGS) of SeungJong Noh and Moongu Jeon (2012). Added OpenCV 2.4.8 support (all dependencies are linked statically).

  • Version 1.8.0: Added Independent Multimodal Background Subtraction (IMBS) of Domenico Daniele Bloisi (2012). Added Adaptive-Selective Background Model Learning.

  • Version 1.7.0: Added Texture-Based Foreground Detection with MRF of Csaba Kertész (2011). Some improvements and bug fixes, ...

  • Version 1.6.0: Added KDE of A. Elgammal, D. Harwood, L. S. Davis, “Non-parametric Model for Background Subtraction” ECCV'00 (thanks to Elgammal). Added Texture-based Background Subtraction of Marko Heikkila and Matti Pietikainen “A texture-based method for modeling the background and detecting moving objects” PAMI'06. Added OpenCV 2.4.5 support, some improvements and bug fixes, ...

  • Version 1.5.0: Added VuMeter of Yann Goyat, Thierry Chateau, Laurent Malaterre and Laurent Trassoudaine (thanks to Antoine Vacavant). Added OpenCV C++ MFC App (with source code) using BGS Library for Windows users. Added OpenCV 2.4.4 support (all dependencies are linked statically -- bye DLL's), some improvements and bug fixes, ...

  • Version 1.4.0: Added PBAS (Pixel-based adaptive Segmenter) of M. Hofmann, P. Tiefenbacher and G. Rigoll. Added T2F-GMM with MRF of Zhenjie Zhao, Thierry Bouwmans, Xubo Zhang and Yongchun Fang. (thanks to Zhenjie Zhao and Thierry Bouwmans) Added GMG of A. Godbehere, A. Matsukawa, K. Goldberg (opencv native). Added OpenCV 2.4.3 support (all dependencies are linked statically -- bye DLL's), some improvements and bug fixes, ...

  • Version 1.3.0: Added Fuzzy Sugeno and Choquet Integral with Adaptive-Selective Background Model Update (thanks to Thierry Bouwmans) Foreground Mask Analysis upgrade, now with number of True Positives (TP), True Negatives (TN), False Positives (FP), False Negatives (FN), Detection Rate, Precision, Fmeasure, Accuracy, False Negative Rate (FNR), False Positive Rate (FPR), True Positive Rate (TPR) and ROC images (thanks to Thierry Bouwmans) Added OpenCV 2.4 support Some improvements, bug fixes, ...

  • Version 1.2.0: Added Multi-Layer BGS (thanks to Jian Yao and Jean-Marc Odobez) Added Background Subtraction Models from Laurence Bender (Simple Gaussian, Fuzzy Gaussian, Mixture of Gaussians, Adaptive SOM and Fuzzy Adaptive SOM) Added Foreground Mask Analysis (Similarity Measure)

  • Version 1.1.0: Added Type2-Fuzzy GMM UM and UV (thanks to Thierry Bouwmans) Added support to calculate average time of algorithms (see param tictoc in ./config/FrameProcessor.xml)

  • Version 1.0.0: First stable version Added 14 background subtraction algorithms (07 adapted from Donovan Parks)

bgslibrary's People

Contributors

andrewssobral avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.