- IRTK requires the following:
- FLTK library.
- Version 1.3 has been tested and is recommended.
- VTK 5 or 6 library.
- Boost library.
- Not a version earlier than 1.48.
- The GNU Scientific Library is also essential.
- FLTK library.
- You will also need to have CMake installed, in order to generate the native build environment.
The applications of the IRTK can be run on Linux distributions and Mac OS X. On Windows, Cygwin must be installed first.
-
Clone the repository
git clone --recurse-submodules https://github.com/BioMedIA/IRTK.git IRTK cd IRTK
-
Create a build directory and change to the build directory
mkdir build cd build
-
Build IRTK.
You can configure IRTK with BUILD_TEST option set to ON using CMake and build the software using the selected build tool (e.g., GNU Make) to build the tests.
cmake .. make
Add the directory containing the IRTK binaries to your PATH environment variable.
export PATH="$IRTK_DIR/bin:$PATH"
setenv PATH "$IRTK_DIR/bin:$PATH"
where IRTK_DIR
is the path to the IRTK build or installation directory.