RTK/Users: Difference between revisions
Line 20: | Line 20: | ||
== Step 0 - Getting ITK == | == Step 0 - Getting ITK == | ||
'''RTK currently uses ITK 3.20'''. We recommend to look into the [http://www.itk.org/Wiki/ITK ITK wiki] in order to compile ITK for your system. The documentation for ITK should be fairly straight forward. Moreover, the concepts for building ITK are very similar to those for RTK. In order to get ITK 3.20 from git: | '''RTK currently uses ITK 3.20'''. | ||
We recommend to look into the [http://www.itk.org/Wiki/ITK ITK wiki] in order to compile ITK for your system. The documentation for ITK should be fairly straight forward. Moreover, the concepts for building ITK are very similar to those for RTK. In order to get ITK 3.20 from git: | |||
git clone git://itk.org/ITK.git | git clone git://itk.org/ITK.git | ||
cd ITK | cd ITK | ||
git checkout release-3.20 | git checkout release-3.20 | ||
One important CMake option to make sure is enabled is the ITK_USE_REVIEW which should be set to ON when running CMake on ITK. | |||
ITK_USE_REVIEW ON | |||
== Step 1 - Getting RTK == | == Step 1 - Getting RTK == |
Revision as of 06:43, 27 August 2012
User's guide
What is RTK?
RTK is an open source C++ library, not an executable. This means that you must write code that uses RTK and compile it before you will obtain something that you can run and get a result from. It also means that you can adapt or extend RTK to address your problem at hand. To facilitate this over multiple operating systems, compilers, and system configurations, RTK itself must be built from its source code. RTK is based on The Insight Toolkit, therefore you would need to get, configure and compile The Insight Toolkit first.
The three steps to starting to work with RTK are therefore:
- Download and Build the ITK source
- Download/Obtain/Get the RTK source
- Build the RTK library
- Write your own code that uses RTK and build it, linking to the RTK library.
In the next sections we describe each of this steps.
Requirements
In order to compile RTK you will need the following:
- GIT (in order to get the software)
- CMake (in order to configure RTK)
- C/C++ compiler
Step 0 - Getting ITK
RTK currently uses ITK 3.20.
We recommend to look into the ITK wiki in order to compile ITK for your system. The documentation for ITK should be fairly straight forward. Moreover, the concepts for building ITK are very similar to those for RTK. In order to get ITK 3.20 from git:
git clone git://itk.org/ITK.git cd ITK git checkout release-3.20
One important CMake option to make sure is enabled is the ITK_USE_REVIEW which should be set to ON when running CMake on ITK.
ITK_USE_REVIEW ON