Bgslibrary
A C++ Background Subtraction Library with wrappers for Python, MATLAB, Java and GUI on QT
Install / Use
/learn @andrewssobral/BgslibraryREADME
BGSLibrary: A Background Subtraction Library
<p align="center"> <a href="https://youtu.be/_UbERwuQ0OU" target="_blank"> <img src="https://raw.githubusercontent.com/andrewssobral/bgslibrary/master/docs/images/bgs_giphy2.gif" border="0" /> </a> </p>Introduction
The BGSLibrary (Background Subtraction Library) is a comprehensive C++ framework designed for background subtraction in computer vision applications, particularly for detecting moving objects in video streams. It provides an easy-to-use and extensible platform for researchers and developers to experiment with and implement various background subtraction techniques.
Library Version
3.3.0 (see Build Status and Release Notes for more info)
Background and Development
The BGSLibrary was developed in early 2012 by Andrews Cordolino Sobral as a C++ framework with wrappers available for Python, Java, and MATLAB. It aims to facilitate foreground-background separation in videos using the OpenCV library.
Compatibility
The library is compatible with OpenCV versions 2.4.x, 3.x, and 4.x. It can be compiled and used on Windows, Linux, and Mac OS X systems.
Licensing
The library's source code is available under the MIT license, making it free for both academic and commercial use.
Getting started
- List of available algorithms
- Algorithms benchmark
- Which algorithms really matter?
- Library architecture
#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>
// Include the OpenCV and BGSLibrary libraries
#include <opencv2/opencv.hpp>
#include <bgslibrary/algorithms/algorithms.h>
int main( int argc, char** argv )
{
// Gets the names of the background subtraction algorithms registered in the BGSLibrary factory
auto algorithmsName = BGS_Factory::Instance()->GetRegisteredAlgorithmsName();
// Displays the number of available background subtraction algorithms in the BGSLibrary
std::cout << "Number of available algorithms: " << algorithmsName.size() << std::endl;
// Displays the list of available background subtraction algorithms in the BGSLibrary
std::cout << "List of available algorithms:" << std::endl;
std::copy(algorithmsName.begin(), algorithmsName.end(), std::ostream_iterator<std::string>(std::cout, "\n"));
// Returns 0 to indicate that the execution was successful
return 0;
}
Installation instructions
You can either install BGSLibrary via pre-built binary package or build it from source.
Supported Compilers:
- GCC 4.8 and above
- Clang 3.4 and above
- MSVC 2015, 2017, 2019 or newer
Other compilers might work, but are not officially supported. The bgslibrary requires some features from the ISO C++ 2014 standard.
🚀 Build Using Pixi (Recommended)
Pixi provides a clean and reproducible way to build BGSLibrary with no manual OpenCV installation. It works on macOS, Linux, and Windows (WSL recommended).
0. Install Pixi
curl -fsSL https://pixi.sh/install.sh | sh
Restart your terminal after installation.
1. Create a Pixi workspace
Inside the bgslibrary repository:
pixi init .
Add required dependencies:
pixi add opencv cmake ninja compilers pkg-config
Pixi will generate a pixi.toml with:
- OpenCV (C++ + Python bindings)
- C/C++ compilers
- CMake + Ninja
- pkg-config
2. Add Pixi build tasks
Append this block to your pixi.toml:
[tasks]
# Core build tasks
configure = "cmake -S . -B build -G Ninja"
build = "cmake --build build"
clean = "rm -rf build"
# Examples tasks
configure_examples = "cmake -S examples -B examples/build"
build_examples = { cmd = "cmake --build examples/build", depends-on = ["configure_examples"] }
clean_examples = "rm -rf examples/build"
# Combined tasks
rebuild = { cmd = "echo 'Rebuild complete'", depends-on = ["clean", "configure", "build"] }
rebuild_all = { cmd = "echo 'Full rebuild complete'", depends-on = ["clean", "clean_examples", "rebuild", "build_examples"] }
# Run tasks
run = "./build/bgslibrary --use_cam --camera=0"
run_bgs_demo = "./examples/build/bgs_demo"
run_bgs_demo2 = "./examples/build/bgs_demo2"
# Development helpers
install = { cmd = "cmake --install build --prefix .pixi/envs/default", depends-on = ["build"] }
This configuration provides granular control over the build process with separate tasks for cleaning, configuring, and building.
3. Activate the Pixi environment
pixi shell
4. Configure the build
pixi run configure
5. Build bgslibrary
pixi run build
This generates:
build/bgslibrarybuild/libbgslibrary_core.*
6. Build C++ examples (optional)
pixi run build_examples
This produces:
examples/build/bgs_demoexamples/build/bgs_demo2
7. Run bgslibrary
Camera demo:
pixi run run
Demo using a video file:
pixi run run_bgs_demo
Demo using an image sequence:
pixi run run_bgs_demo2
8. Install bgslibrary into the Pixi environment (optional)
pixi run install
The library and headers go into .pixi/envs/default/
You can then use bgslibrary from other CMake projects in the same environment, for example:
find_package(BGSLibrary REQUIRED)
9. Clean and rebuild
To clean build artifacts:
pixi run clean # Clean main build
pixi run clean_examples # Clean examples
To rebuild everything from scratch:
pixi run rebuild # Rebuild main project
pixi run rebuild_all # Rebuild main project + examples
These tasks automatically handle dependencies, ensuring a consistent build state.
🛠 Build Using CMake (Classic Method)
Graphical User Interface
Wrappers
Usage examples
- BGSlibrary examples folder
- BGSlibrary examples in C++
- BGSlibrary examples in Python
More
- Docker images
- How to integrate BGSLibrary in your own CPP code
- How to contribute
- List of collaborators
- Release notes
Algorithm compatibility across OpenCV versions
| Algorithm | OpenCV < 3.0 (42) | 3.0 <= OpenCV <= 3.4.7 (41) | 3.4.7 < OpenCV < 4.0 (39) | OpenCV >= 4.0 (26) | |--------------------------------|:-----------:|:----------------------:|:---------------------:|:------------:| | AdaptiveBackgroundLearning | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | AdaptiveSelectiveBackgroundLearning | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | CodeBook |
Related Skills
node-connect
340.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
340.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.1kCommit, push, and open a PR
