#include "itkImage.h" #include "itkTranslationTransform.h" #include "itkImageFileReader.h" #include "itkNormalizeImageFilter.h" #include "itkResampleImageFilter.h" #include "itkImageFileWriter.h" #include "QuickView.h" typedef itk::Image<unsigned char, 2> ImageType; static void CreateImage(ImageType::Pointer image); int main(int argc, char *argv[]) { ImageType::Pointer image = ImageType::New(); CreateImage(image); typedef itk::TranslationTransform<double,2> TranslationTransformType; TranslationTransformType::Pointer transform = TranslationTransformType::New(); TranslationTransformType::OutputVectorType translation; translation[0] = 10; translation[1] = 20; transform->Translate(translation); typedef itk::ResampleImageFilter<ImageType, ImageType> ResampleImageFilterType; ResampleImageFilterType::Pointer resampleFilter = ResampleImageFilterType::New(); resampleFilter->SetTransform(transform.GetPointer()); resampleFilter->SetInput(image); /* // These are the defaults double spacing[ 2 ]; spacing[0] = 1.0; spacing[1] = 1.0; resampleFilter->SetOutputSpacing( spacing ); double origin[ 2 ]; origin[0] = 0.0; origin[1] = 0.0; resampleFilter->SetOutputOrigin( origin ); */ // Without this, the program crashes ImageType::SizeType size = image->GetLargestPossibleRegion().GetSize(); resampleFilter->SetSize( size ); resampleFilter->Update(); QuickView viewer; viewer.AddImage(image.GetPointer()); viewer.AddImage(resampleFilter->GetOutput()); viewer.Visualize(); return EXIT_SUCCESS; } void CreateImage(ImageType::Pointer image) { ImageType::IndexType start; start.Fill(0); ImageType::SizeType size; size.Fill(100); ImageType::RegionType region(start, size); image->SetRegions(region); image->Allocate(); image->FillBuffer(0); // Make a square for(unsigned int r = 40; r < 60; r++) { for(unsigned int c = 40; c < 60; c++) { ImageType::IndexType pixelIndex; pixelIndex[0] = r; pixelIndex[1] = c; image->SetPixel(pixelIndex, 255); } } }
cmake_minimum_required(VERSION 2.8) project(TranslationTransform) find_package(ITK REQUIRED) include(${ITK_USE_FILE}) if (ITKVtkGlue_LOADED) find_package(VTK REQUIRED) include(${VTK_USE_FILE}) endif() add_executable(TranslationTransform MACOSX_BUNDLE TranslationTransform.cxx) if( "${ITK_VERSION_MAJOR}" LESS 4 ) target_link_libraries(TranslationTransform ITKReview ${ITK_LIBRARIES}) else( "${ITK_VERSION_MAJOR}" LESS 4 ) target_link_libraries(TranslationTransform ${ITK_LIBRARIES}) endif( "${ITK_VERSION_MAJOR}" LESS 4 )
Click here to download TranslationTransform and its CMakeLists.txt file. Once the tarball TranslationTransform.tar has been downloaded and extracted,
cd TranslationTransform/build
cmake ..
cmake -DITK_DIR:PATH=/home/me/itk_build ..
Build the project:
make
and run it:
./TranslationTransform
WINDOWS USERS PLEASE NOTE: Be sure to add the ITK bin directory to your path. This will resolve the ITK dll's at run time.
Many of the examples in the ITK Wiki Examples Collection require VTK. You can build all of the the examples by following these instructions. If you are a new VTK user, you may want to try the Superbuild which will build a proper ITK and VTK.
For examples that use QuickView (which depends on VTK), you must have built ITK with Module_ITKVtkGlue=ON.
Some of the ITK Examples require VTK to display the images. If you download the entire ITK Wiki Examples Collection, the ItkVtkGlue directory will be included and configured. If you wish to just build a few examples, then you will need to download ItkVtkGlue and build it. When you run cmake it will ask you to specify the location of the ItkVtkGlue binary directory.