ITK/Examples/Instructions/ForUsers: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
Line 27: Line 27:


==Build all of the examples==
==Build all of the examples==
If you are really getting excited about learning ITK and are tried of "copy and pasting" examples over and over, you can download them all at the same time and build them all together.
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.


* [http://www.gitorious.org/itkwikiexamples/itkwikiexamples/archive-tarball/master Download a tar file] containing all examples. '''NOTE:''' If you get a message to try again later, hit the refresh button on your browser.
* [http://www.gitorious.org/itkwikiexamples/itkwikiexamples/archive-tarball/master Download a tar file] containing all examples. '''NOTE:''' If you get a message to try again later, hit the refresh button on your browser.

Revision as of 19:17, 20 June 2011

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
  • 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

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