ITK/Examples/SimpleOperations/GetNameOfClass

From KitwarePublic
< ITK‎ | Examples
Revision as of 15:25, 24 October 2010 by Daviddoria (talk | contribs) (Created page with "==GetNameOfClass.cxx== <source lang="cpp"> #include <itkImage.h> int main(int, char*[]) { typedef itk::Image<unsigned char, 2> ImageType; ImageType::Pointer image = ImageTyp...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

GetNameOfClass.cxx

<source lang="cpp">

  1. include <itkImage.h>

int main(int, char*[]) {

 typedef itk::Image<unsigned char, 2> ImageType;
 ImageType::Pointer image = ImageType::New();
 std::cout << "image is type: " << image->GetNameOfClass() << std::endl;
 return EXIT_SUCCESS;

}

</source>

CMakeLists.txt

<source lang="cmake"> cmake_minimum_required(VERSION 2.6)

PROJECT(GetNameOfClass)

FIND_PACKAGE(ITK REQUIRED) INCLUDE(${ITK_USE_FILE})

ADD_EXECUTABLE(GetNameOfClass GetNameOfClass.cxx) TARGET_LINK_LIBRARIES(GetNameOfClass ITKCommon)


</source>