diff --git a/.properties b/.properties index ef465a3fa452726ef985df92e7d371b9a4653d3f..ea98f544a59a7991adfd7295702e5844a68debd7 100644 --- a/.properties +++ b/.properties @@ -1 +1 @@ -version=3.1.0-SNAPSHOT +version=3.2.0-SNAPSHOT diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b1828219151ee87b1e0a39da7cba2bcfe820927..74a2820266c0cb5a6de8cffa0b0f1cfe77c45461 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1) -project(bgslibrary VERSION 3.1.0) +project(bgslibrary VERSION 3.2.0) include(CheckCXXCompilerFlag) diff --git a/README.md b/README.md index 8a685bab55d6828f236b55da32712266588f83be..c9e8980e7584d66dbb16daeb67900a0e0babc49a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ## BGSLibrary A Background Subtraction Library -[](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](http://www.gnu.org/licenses/gpl-3.0) [](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](https://github.com/andrewssobral/bgslibrary/wiki/List-of-available-algorithms) +[](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](http://www.gnu.org/licenses/gpl-3.0) [](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](https://github.com/andrewssobral/bgslibrary/wiki/Build-status) [](https://github.com/andrewssobral/bgslibrary/wiki/List-of-available-algorithms) <p align="center"> <a href="https://youtu.be/_UbERwuQ0OU" target="_blank"> @@ -9,9 +9,9 @@ A Background Subtraction Library </a> </p> -Last page update: **23/07/2022** Previous page update: **06/08/2019** +Last page update: **31/07/2022** -Library Version: **3.1.0** (see **[Build Status](https://github.com/andrewssobral/bgslibrary/wiki/Build-status)** and **[Release Notes](https://github.com/andrewssobral/bgslibrary/wiki/Release-notes)** for more info) +Library Version: **3.2.0** (see **[Build Status](https://github.com/andrewssobral/bgslibrary/wiki/Build-status)** and **[Release Notes](https://github.com/andrewssobral/bgslibrary/wiki/Release-notes)** for more info) The **BGSLibrary** was developed early 2012 by [Andrews Sobral](http://andrewssobral.wixsite.com/home) to provide an easy-to-use C++ framework (wrappers for Python, Java and MATLAB are also available) for foreground-background separation in videos based on [OpenCV](http://www.opencv.org/). The bgslibrary is compatible with OpenCV 2.4.x, 3.x and 4.x, and compiles under Windows, Linux, and Mac OS X. Currently the library contains **43** algorithms. The source code is available under the [MIT license](https://opensource.org/licenses/MIT), the library is available free of charge to all users, academic and commercial. diff --git a/gui/qt/bgslibrary_gui.cpp b/gui/qt/bgslibrary_gui.cpp index df6dc357566b1e8f8ba5cc45e143d0c43d924c27..9360f5483ea8f9f3462d089a716c16eda21fe28e 100644 --- a/gui/qt/bgslibrary_gui.cpp +++ b/gui/qt/bgslibrary_gui.cpp @@ -3,7 +3,7 @@ int main(int argc, char *argv[]) { std::cout << "--------------------------------------------" << std::endl; - std::cout << "Background Subtraction Library v3.1.0 " << std::endl; + std::cout << "Background Subtraction Library v3.2.0 " << std::endl; std::cout << "https://github.com/andrewssobral/bgslibrary " << std::endl; std::cout << "by: " << std::endl; std::cout << "Andrews Sobral (andrewssobral@gmail.com) " << std::endl; @@ -13,7 +13,7 @@ int main(int argc, char *argv[]) QApplication a(argc, argv); QCoreApplication::setApplicationName("BGSLibrary"); - QCoreApplication::setApplicationVersion("3.1.0"); + QCoreApplication::setApplicationVersion("3.2.0"); MainWindow w; w.show(); diff --git a/setup.py b/setup.py index 083340538b939344e34764be9dd0103014d88a0f..055ec32e21f08b207addb110342d75669e8b0db4 100644 --- a/setup.py +++ b/setup.py @@ -208,7 +208,7 @@ with open("README.md", "r") as fh: setup( name='pybgs', - version='3.1.0.post0', + version='3.2.0.post0', author='Andrews Sobral', author_email='andrewssobral@gmail.com', url='https://github.com/andrewssobral/bgslibrary',