Skip to content

Compiling BGSLibrary with Visual Studio 2010 and Opencv 2.4.x

Andrews Sobral edited this page Mar 11, 2017 · 1 revision

Tutorial for compiling BGSLibrary with Visual Studio 2010 and Opencv 2.4.x (Windows x86 / 32 bits)

  1. Install OpenCV

1.a) Download OpenCV 2.4.x from http://opencv.org/

1.b) Install in: C:\OpenCV2.4.x

1.c) Add OpenCV binaries in your system path C:\OpenCV2.4.x\build\x86\vc10\bin

  1. Download BGSLibrary

2.a) Clone bgslibrary at C:\bgslibrary

  1. Start Visual Studio 2010

3.a) Create a 'New Project'

3.b) Select 'Visual C++ -> Win32 -> Win32 Console Application'

3.c) Set the project location: C:\bgslibrary

3.d) Set the project name: bgslibrary

3.e) Select 'Empty project'

3.f) Add the Main.cpp file in [Source Files]

3.g) Add the content of c:\bgslibrary\package_bgs\*.* in [Header Files]

3.h) Add the content of c:\bgslibrary\package_analysis\*.* in [Header Files]

3.i) Change to [Release] [Win32] mode

3.j) Click on Project->Properties

3.k) Change [Output Directory] to ..\

3.l) Add OpenCV include in [C/C++] -> [Additional Include Directories] C:\OpenCV2.4.x\build\include;C:\OpenCV2.4.x\build\include\opencv;

3.m) Add OpenCV libraries in [Linker]->[Input] C:\OpenCV2.4.x\build\x86\vc10\lib\*.lib

3.n) Click on 'Build' and wait...

3.o) Run C:\bgslibrary\bgslibrary.exe

Enjoy! ;-)