BIC-MNI / minc-tools

Basic minc-tools from former minc repository
Other
29 stars 25 forks source link

MINC Tools

This package is a collection of tools that work on MINC format images.

INSTALLATION

Compilation and installation is now done with CMake. Use these steps:

  1. Compile

    $ cmake CMakeLists.txt $ make

Note that if you have installed libminc in a non-standard location (in this case /opt/local/minc) you will have to tell CMake where to find it as such:

$ export LIBMINC_DIR=/opt/local/minc $ cmake CMakeLists.txt $ make

Similarly if you'd like to install minc-tools in this same location you will need to do this:

$ export LIBMINC_DIR=/opt/local/minc $ cmake -DCMAKE_INSTALL_PREFIX:PATH=/opt/local/minc CMakeLists.txt $ make

  1. Install

    $ sudo make install