I am Charmie

メモとログ

2014-02-01から1ヶ月間の記事一覧

a bit modified sample code using QPBO

I started using QPBO, published by Vladimir Kolmogorov, for solving discrete optimization problem. QPBO.h contains a sample code, which I couldn't understand at first moment. Since my colleague told me what the code means, I wrote a bit mo…

Build OpenGM 2.2.1 on Ubuntu

OpenGM is a C++ library for discrete optimization and inference. OpenGM uses several open source codes as external libraries. I compiled it on Ubuntu 12.04. Due to some reasons, I omitted some of the external libraries: CPlex: I spent 2-3 …

Install libDAI on Ubuntu

libDAI for OpenGM. The latest version, which contains CMakeLists.txt, is available on github. The following commands are for older versions. sudo apt-get install libgmp-dev cimg-dev wget http://cs.ru.nl/~jorism/libDAI/libDAI-0.3.1.tar.gz t…

Install CMake 2.8.12.2 from source

There are several ways for CMake installation from source. I tried to install CMake 2.8.12.2 from source using pre-installed CMake 2.8.7 but it failed. #!/bin/bash wget http://www.cmake.org/files/v2.8/cmake-2.8.12.2.tar.gz tar zxvf cmake-2…

CMakeLists.txt for STASM version 4.1.0

STASM is a C++ library for face features detection using Active Shape Model. The version 4.1.0 contains a program, called TASM, that trains ASM given a set of face control points database such as MUCT. The version 4.1.0 lacks CMakeLists.tx…