Skip to content

Commit f4b189f

Browse files
committed
MFC GUI Updated
1 parent cb6ae83 commit f4b189f

29 files changed

+2346
-327
lines changed

.gitattributes

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
*.rc eol=crlf
2+
*.rc2 eol=crlf
23
*.vcproj eol=crlf
34
*.bat eol=crlf
4-
*.sln eol=crlf
5+
*.sln eol=crlf
6+
*.ico -text

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
etc/
22
binaries/
3+
package_bgs/pt/
34
java_gui/dist/
45
java_gui/build/
56
java_gui/bgslibrary.exe
67
python/
78
qt_gui/
89
fet/etc/
910
*.exe
10-
*.pdb
11+
*.pdb
12+
vs2010mfc/src/bgslibrary_vs2010_mfc.aps

README.md

Lines changed: 7 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,15 @@
1-
<script>
2-
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3-
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4-
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5-
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6-
ga('create', 'UA-6131398-5', 'andrewssobral.github.io');
7-
ga('send', 'pageview');
8-
</script>
9-
101
BGSLibrary
112
==========
123

134
A Background Subtraction Library
145

15-
Last Page Update: **25/01/2015**
6+
Last Page Update: **01/05/2015**
167

178
Latest Library Version: **1.9.2** (see Release Notes for more info)
189

1910
The BGSLibrary was developed by [Andrews Sobral](https://sites.google.com/site/andrewssobral) and provides an easy-to-use C++ framework based on [OpenCV](http://www.opencv.org/) to perform background subtraction (BGS) in videos. The BGSLibrary compiles under Linux, Mac OS X and Windows. Currently the library offers **37**¹ BGS algorithms. 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².
2011

21-
For Windows users, 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 and Mac users, a Makefile can be used to compile all files.
12+
For Windows users, a demo project for Visual Studio 2010/2013 is provided. An executable version of BGSLibrary is available for Windows 32 bits and 64 bits. For Linux and Mac users, a Makefile can be used to compile all files.
2213

2314
Note: the BGSLibrary is based on OpenCV 2.X, if you want to use with OpenCV 3.x please check-out our [opencv3](https://github.com/andrewssobral/bgslibrary/tree/opencv3) branch.
2415

@@ -171,25 +162,15 @@ Download links
171162

172163
* BGSLibrary v1.9.2 with MFC GUI v1.4.2 (x86/x64)
173164

174-
https://github.com/andrewssobral/bgslibrary/blob/master/binaries/mfc_bgslibrary_x86_v1.4.2.zip
175-
176-
Old versions:
177-
178-
* BGSLibrary v1.9.1 with MFC GUI v1.4.1 (x86/x64) (+src)
179-
180-
https://github.com/andrewssobral/bgslibrary/blob/master/binaries/mfc_bgslibrary_x86_v1.4.1.zip
181-
182-
* BGSLibrary v1.9.0 with MFC GUI v1.4.0 (x86/x64) (+src)
183-
184-
https://github.com/andrewssobral/bgslibrary/blob/master/binaries/mfc_bgslibrary_x86_v1.4.0.7z
165+
https://github.com/andrewssobral/bgslibrary/releases/download/v1.9.2_x86_mfc_gui/bgslibrary_x86_v1.9.2_with_mfc_gui_v1.4.2.7z
185166

186-
* BGSLibrary v1.5.0 with Java GUI for Windows 32bits (x86)
167+
* BGSLibrary v1.9.2 with Java GUI for Windows 32bits (x86)
187168

188-
https://github.com/andrewssobral/bgslibrary/blob/master/binaries/bgs_library_x86_v1.5.0_with_gui.7z
169+
https://github.com/andrewssobral/bgslibrary/releases/download/v1.9.2_x86_java_gui/bgslibrary_x86_v1.9.2_with_java_gui_v1.0.4.7z
189170

190-
* BGSLibrary v1.5.0 with Java GUI for Windows 64bits (x64)
171+
* BGSLibrary v1.9.2 with Java GUI for Windows 64bits (x64)
191172

192-
https://github.com/andrewssobral/bgslibrary/blob/master/binaries/bgs_library_x64_v1.5.0_with_gui.7z
173+
https://github.com/andrewssobral/bgslibrary/releases/download/v1.9.2_x64_java_gui/bgslibrary_x64_v1.9.2_with_java_gui_v1.0.4.7z
193174

194175
![MFC BGSLibrary](https://sites.google.com/site/andrewssobral/mfc_bgslibrary_120.png "MFC BGSLibrary")
195176

java_gui/config/FrameProcessor.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@
3737
<enableIMBS>0</enableIMBS>
3838
<enableMultiCueBGS>0</enableMultiCueBGS>
3939
<enableSigmaDeltaBGS>0</enableSigmaDeltaBGS>
40+
<enableSuBSENSEBGS>0</enableSuBSENSEBGS>
41+
<enableLOBSTERBGS>0</enableLOBSTERBGS>
4042
</opencv_storage>

vs2010mfc/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.exe
2+
*.pdb
3+
*.dll

vs2010mfc/bgslibrary_vs2010_mfc.rc

-17.5 KB
Binary file not shown.

vs2010mfc/bgslibrary_vs2010_mfc.vcxproj

Lines changed: 0 additions & 296 deletions
This file was deleted.

vs2010mfc/bgslibrary_vs2010_mfc.vcxproj.user

Lines changed: 0 additions & 3 deletions
This file was deleted.
-6.15 MB
Binary file not shown.

vs2010mfc/dataset/video.avi

1 MB
Binary file not shown.

0 commit comments

Comments
 (0)