ITK/Examples/Instructions/ForUsers: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Correct the instructions for Superbuild)
Line 48: Line 48:
The ITKWikiExamples Superbuild will grab the proper versions of VTK and ITK and build all of the examples. To take advantage of the Superbuild, you will need to install [http://git-scm.com/ git].
The ITKWikiExamples Superbuild will grab the proper versions of VTK and ITK and build all of the examples. To take advantage of the Superbuild, you will need to install [http://git-scm.com/ git].
<pre>mkdir ITKWikiExamples-Superbuild</pre>
<pre>mkdir ITKWikiExamples-Superbuild</pre>
* From this build directory, run 'cmake'.
* From this build directory, run 'ccmake'.
<pre>
<pre>
cd ITKWikiExamples-Superbuild
cd ITKWikiExamples-Superbuild

Revision as of 17:38, 2 June 2012

If you want to use ITK Examples you have several options. If you are a Wiki Example Developer, go here or a Wiki Example Administrator go here.

Build an example

  1. Create a source directory (mkdir ExampleName)
  2. Copy and paste the source code under the heading ExampleName.cxx into an editor and save the file as ExampleName.cxx in the source directory you have just created.
  3. Copy and paste the text under the heading CMakeLists.txt into an editor and save the file as CMakeLists.txt in the same directory.
  4. Create a build directory (mkdir bin). This can be inside of your source directory, but it doesn't have to be.

From here, the instructions are operating system specific:

Linux

From your build directory, run

ccmake YourSourceDirectory (to create a Unix Makefile)

or

ccmake YourSourceDirectory -G YourIDE (e.g. KDevelop3)
  1. Press 'c' to configure.
  2. If CMake finds the correct location of your VTK binary build (the VTK_DIR cmake variable), and/or the ITK binary build (the ITK_DIR cmake variable) great! If not, use the arrow keys to scroll down to VTK_DIR, press enter, type the location of your VTK binary build (likely something like /home/yourname/bin/VTK), and press enter.
  3. Press 'c' again to reconfigure
  4. Press 'g' to generate
  5. If you generated a Unix Makefile, type 'make' in your build directory
  6. If you generated a project for an IDE, open the project file with your IDE

Windows

  1. Open CMake
  2. Select your CMakeLists.txt file
  3. Select your build system
  4. Click "Generate"

Build all of the examples

If you are really getting excited about learning ITK and are tired of "copy and pasting" examples over and over, you can download them all at the same time and build them all together.

  • Download a tar file containing all examples. NOTE: If you get a message to try again later, hit the refresh button on your browser.
Extract the tarball to WikiExamples.
or
  • Keep an active connection to the examples.
  1. Install git
  2. Clone the examples repository
git clone git://gitorious.org/itkwikiexamples/itkwikiexamples.git ITKWikiExamples

You have your own versions of VTK and ITK

  • Make a directory to hold the binaries
mkdir ITKWikiExamples-build
  • From this build directory, run 'cmake'. You will be prompted for the location of your VTK and ITK binary builds.
cd ITKWikiExamples-build
ccmake ../ITKWikiExamples
make

Use the Superbuild to build a proper VTK and ITK

The ITKWikiExamples Superbuild will grab the proper versions of VTK and ITK and build all of the examples. To take advantage of the Superbuild, you will need to install git.

mkdir ITKWikiExamples-Superbuild
  • From this build directory, run 'ccmake'.
cd ITKWikiExamples-Superbuild
ccmake ../ITKWikiExamples/Superbuild
make

Find a class or method using google

Type the following into the google search bar

site:itk.org/Wiki/ITK/Examples itkMedianImageFilter
or
site:itk.org/Wiki/ITK/Examples SetRadius

Update the examples repository

If you cloned the examples repository, you can get the latest updates:

cd ITKWikiExamples
git pull git@gitorious.org:itkwikiexamples/itkwikiexamples.git
cd ../ITKWikiExamples-build
cmake ../ITKWikiExamples
make

Run all of the examples

ctest