ITK/Examples/SimpleOperations/ParaviewColormap

From KitwarePublic
< ITK‎ | Examples
Revision as of 15:15, 26 March 2012 by Daviddoria (talk | contribs) (Created page with "==ParaviewColormap.cxx== <source lang="cpp"> #include "itkCustomColormapFunction.h" #include "itkImage.h" #include "itkImageRegionConstIterator.h" #include "itkScalarToRGBColorma...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

ParaviewColormap.cxx

<source lang="cpp">

  1. include "itkCustomColormapFunction.h"
  2. include "itkImage.h"
  3. include "itkImageRegionConstIterator.h"
  4. include "itkScalarToRGBColormapImageFilter.h"
  5. include "itkRescaleIntensityImageFilter.h"
  6. include "itkImageFileWriter.h"
  7. include "itkRGBPixel.h"

typedef itk::RGBPixel<unsigned char> RGBPixelType; typedef itk::Image<RGBPixelType, 2> RGBImageType;

typedef itk::Image<float, 2> FloatImageType; typedef itk::Image<unsigned char, 2> UnsignedCharImageType;

int main( int argc, char *argv[]) {

 FloatImageType::Pointer image = FloatImageType::New();
 itk::Index<2> start;
 start.Fill(0);
 itk::Size<2> size = Template:100,20;
 itk::ImageRegion<2> region(start, size);
 image->SetRegions(region);
 image->Allocate();
 for(unsigned int i = 0; i < size[0]; i++)
   {
   for(unsigned int j = 0; j < size[1]; j++)
     {
     itk::Index<2> pixel;
     pixel[0] = i;
     pixel[1] = j;
     image->SetPixel(pixel, i);
     }
   }
 // Custom colormap
 //typedef itk::Function::CustomColormapFunction<UnsignedCharImageType::PixelType, RGBImageType::PixelType> ColormapType;
 typedef itk::Function::CustomColormapFunction<FloatImageType::PixelType, RGBImageType::PixelType> ColormapType;
 ColormapType::ChannelType redChannel;
 ColormapType::ChannelType greenChannel;
 ColormapType::ChannelType blueChannel;
 
 redChannel.push_back(static_cast<ColormapType::RealType>(0.231373));
 greenChannel.push_back(static_cast<ColormapType::RealType>(0.298039));
 blueChannel.push_back(static_cast<ColormapType::RealType>(0.752941));
 redChannel.push_back(static_cast<ColormapType::RealType>(1));
 greenChannel.push_back(static_cast<ColormapType::RealType>(1));
 blueChannel.push_back(static_cast<ColormapType::RealType>(1));
 
 redChannel.push_back(static_cast<ColormapType::RealType>(0.705882));
 greenChannel.push_back(static_cast<ColormapType::RealType>(0.0156863));
 blueChannel.push_back(static_cast<ColormapType::RealType>(0.14902));
 
 ColormapType::Pointer colormap = ColormapType::New();
 colormap->SetRedChannel(redChannel);
 colormap->SetGreenChannel(greenChannel);
 colormap->SetBlueChannel(blueChannel);
 // Setup conversion
 typedef itk::ScalarToRGBColormapImageFilter<FloatImageType, RGBImageType> RGBFilterType;
 RGBFilterType::Pointer rgbfilter = RGBFilterType::New();
 rgbfilter->SetInput(image);
 
 rgbfilter->SetColormap(colormap);
 
 // Built-in color map

// rgbfilter->SetColormap( RGBFilterType::Hot );

 {
 typedef  itk::ImageFileWriter< RGBImageType > WriterType;
 WriterType::Pointer writer = WriterType::New();
 writer->SetFileName("colormap.png");
 writer->SetInput(rgbfilter->GetOutput());
 writer->Update();
 }
 return EXIT_SUCCESS;

}

</source>

CMakeLists.txt

<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 3.9.5)

project(CustomColormap)

find_package(ITK REQUIRED) include(${ITK_USE_FILE}) if (ITKVtkGlue_LOADED)

 find_package(VTK REQUIRED)
 include(${VTK_USE_FILE})

else()

 find_package(ItkVtkGlue REQUIRED)
 include(${ItkVtkGlue_USE_FILE})
 set(Glue ItkVtkGlue)

endif()

add_executable(CustomColormap MACOSX_BUNDLE CustomColormap.cxx) target_link_libraries(CustomColormap

 ${Glue}  ${VTK_LIBRARIES} ${ITK_LIBRARIES})

</syntaxhighlight>

Download and Build CustomColormap

Click here to download CustomColormap. and its CMakeLists.txt file. Once the tarball CustomColormap.tar has been downloaded and extracted,

cd CustomColormap/build 
  • If ITK is installed:
cmake ..
  • If ITK is not installed but compiled on your system, you will need to specify the path to your ITK build:
cmake -DITK_DIR:PATH=/home/me/itk_build ..

Build the project,

make

and run it:

./CustomColormap

WINDOWS USERS PLEASE NOTE: Be sure to add the VTK and ITK bin directories to your path. This will resolve the VTK and ITK dll's at run time.

Building All of the Examples

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.

ItkVtkGlue

ITK >= 4

For examples that use QuickView (which depends on VTK), you must have built ITK with Module_ITKVtkGlue=ON.

ITK < 4

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.