/bo

A collection of methods and structures for image processing, segmentation, object analysis, and surface reconstruction.

Primary LanguageC++OtherNOASSERTION

Summary


Bö is a collection of basic and advanced methods and data structures for 2D image processing and segmentation, 3D object analysis, surface reconstruction. Written entirely in C++, the library provides loosely-coupled though completely compatible modules for various problems in computer vision. Bö is BSD licensed. Please be advised that Bö is mainly a research project and might contain bugs and rough edges.

Main Features

C++11

No C++11 features are currently used in order to support older compilers.

Project Dependencies


  • Boost. Minimal required version of boost is 1.43 because of boost::array::fill(). This function is used only once and can be rewritten, that lowers the version needed to 1.38 because of the ScopeExit library. If you also want to build tests, boost version 1.44 is required because of the Filesystem version 3 library.
  • Google Test is used for testing. If you are not going to build tests, you may ignore this dependency.
  • There is some header-only utility code for OpenCV library, however, it is disabled by default and if you don't plan to use it in your project, you may ignore this dependency.

Getting Started


Getting Bö

No pre-built binaries are currently available. Use the following command to get the source code:

$ hg pull https://bitbucket.org/rukletsov/b

Building Bö

CMake is currently used to build Bö and its tests. If you use CMake from command line, you may find the following options useful:

-DCMAKE_BUILD_TYPE=Debug -DBuildTests=ON -DUsePch=OFF -DBUILD_SHARED_LIBS=ON
-DCMAKE_BUILD_TYPE=Release -DBuildTests=ON -DUsePch=OFF -DBUILD_SHARED_LIBS=OFF

The code has been successfully built with, tested and run on:

  • Ubuntu 10.04 32bit with gcc 4.4.3.
  • Fedora 17 32bit with gcc 4.7.0.
  • openSUSE 12.2 64bit with gcc 4.6.2 and clang 3.1.
  • Mac OS X Lion (10.7.2) 64bit with gcc 4.2.1 and clang 3.0.
  • Windows XP 32bit with msvc2005 and msvc2008.
  • Windows 7 64bit with msvc2010.

Using Bö

Code samples and overview of some features are available on project wiki.