#include <itkImage.h> #include <itkRGBPixel.h> int main(int argc, char *argv[]) { typedef itk::RGBPixel<unsigned char> RGBPixelType; typedef itk::Image<RGBPixelType> RGBImageType; RGBImageType::Pointer image = RGBImageType::New(); return EXIT_SUCCESS; }
cmake_minimum_required(VERSION 2.8) project(RGBPixel) find_package(ITK REQUIRED) include(${ITK_USE_FILE}) if (ITKVtkGlue_LOADED) find_package(VTK REQUIRED) include(${VTK_USE_FILE}) endif() add_executable(RGBPixel MACOSX_BUNDLE RGBPixel.cxx) if( "${ITK_VERSION_MAJOR}" LESS 4 ) target_link_libraries(RGBPixel ITKReview ${ITK_LIBRARIES}) else( "${ITK_VERSION_MAJOR}" LESS 4 ) target_link_libraries(RGBPixel ${ITK_LIBRARIES}) endif( "${ITK_VERSION_MAJOR}" LESS 4 )
Click here to download RGBPixel and its CMakeLists.txt file. Once the tarball RGBPixel.tar has been downloaded and extracted,
cd RGBPixel/build
cmake ..
cmake -DITK_DIR:PATH=/home/me/itk_build ..
Build the project:
make
and run it:
./RGBPixel
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.