This header-only C++14 library is intended to contain implementations of advanced computer vision algorithms.
The next sections describe the currently implemented algorithms.
Performs mutual information registration between two images, as described in the work Accurate Real-time Tracking Using Mutual Information by Dame et al.
- A C++14 compliant compiler (GCC 5 or newer is recommended)
- CMake 3.1 or newer
- git for cloning the repository
First, make sure your system satisfy the minimum requirements.
After cloning the repository, make sure to initialize its submodules :
git submodule init
git submodule update
Finally, create a build folder in any place you like and run the following commands inside it:
cmake <path/to/cloned/repository>
make -j8