ITK/Examples/Segmentation/ConnectedComponentImageFilterDemo

From KitwarePublic
< ITK‎ | Examples
Revision as of 16:38, 5 October 2015 by Lorensen (talk | contribs)
Jump to navigationJump to search
ITK Examples Baseline Segmentation TestConnectedComponentImageFilterDemo.png

ConnectedComponentImageFilterDemo.cxx

<source lang="cpp">

  1. include "itkLiThresholdImageFilter.h"
  2. include "itkHuangThresholdImageFilter.h"
  3. include "itkIntermodesThresholdImageFilter.h"
  4. include "itkIsoDataThresholdImageFilter.h"
  5. include "itkKittlerIllingworthThresholdImageFilter.h"
  6. include "itkMaximumEntropyThresholdImageFilter.h"
  7. include "itkMomentsThresholdImageFilter.h"
  8. include "itkOtsuThresholdImageFilter.h"
  9. include "itkRenyiEntropyThresholdImageFilter.h"
  10. include "itkShanbhagThresholdImageFilter.h"
  11. include "itkTriangleThresholdImageFilter.h"
  12. include "itkYenThresholdImageFilter.h"
  1. include "itkConnectedComponentImageFilter.h"
  2. include "itkLabelToRGBImageFilter.h"
  3. include "itkImageFileReader.h"
  4. include "itkImageFileWriter.h"
  1. include "itksys/SystemTools.hxx"
  2. include <sstream>
  3. include <map>
  4. include "QuickView.h"

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

 if( argc < 2 )
   {
   std::cout << "Usage: " << argv[0];
   std::cout << " inputImageFile";
   std::cerr << std::endl;
   return EXIT_FAILURE;
   }
 typedef  short                       InputPixelType;
 typedef  int                         OutputPixelType;
 typedef itk::RGBPixel<unsigned char> RGBPixelType;
 typedef itk::Image< InputPixelType,  2 > InputImageType;
 typedef itk::Image< OutputPixelType, 2 > OutputImageType;
 typedef itk::Image<RGBPixelType, 2>      RGBImageType;
 typedef itk::LiThresholdImageFilter<InputImageType, OutputImageType >
   LiFilterType;
 typedef itk::HuangThresholdImageFilter<InputImageType, OutputImageType >
   HuangFilterType;
 typedef itk::IntermodesThresholdImageFilter<InputImageType, OutputImageType >
   IntermodesFilterType;
 typedef itk::IsoDataThresholdImageFilter<InputImageType, OutputImageType >
   IsoDataFilterType;
 typedef itk::KittlerIllingworthThresholdImageFilter<InputImageType, OutputImageType >
   KittlerIllingworthFilterType;
 typedef itk::LiThresholdImageFilter<InputImageType, OutputImageType >
   LiFilterType;
 typedef itk::MaximumEntropyThresholdImageFilter<InputImageType, OutputImageType >
   MaximumEntropyFilterType;
 typedef itk::MomentsThresholdImageFilter<InputImageType, OutputImageType >
   MomentsFilterType;
 typedef itk::OtsuThresholdImageFilter<InputImageType, OutputImageType >
   OtsuFilterType;
 typedef itk::RenyiEntropyThresholdImageFilter<InputImageType, OutputImageType >
   RenyiEntropyFilterType;
 typedef itk::ShanbhagThresholdImageFilter<InputImageType, OutputImageType >
   ShanbhagFilterType;
 typedef itk::TriangleThresholdImageFilter<InputImageType, OutputImageType >
   TriangleFilterType;
 typedef itk::YenThresholdImageFilter<InputImageType, OutputImageType >
   YenFilterType;
 typedef itk::ConnectedComponentImageFilter <OutputImageType, OutputImageType >
   ConnectedComponentImageFilterType;
 typedef itk::LabelToRGBImageFilter<OutputImageType, RGBImageType> RGBFilterType;
 typedef itk::ImageFileReader< InputImageType >  ReaderType;
 ReaderType::Pointer reader = ReaderType::New();
 reader->SetFileName( argv[1] );
 QuickView viewer;
 viewer.AddImage(
   reader->GetOutput(),true,
   itksys::SystemTools::GetFilenameName(argv[1]));  
 typedef std::map<std::string, itk::HistogramThresholdImageFilter<InputImageType, OutputImageType>::Pointer> FilterContainerType;
 FilterContainerType filterContainer;
 filterContainer["Huang"] = HuangFilterType::New();
 filterContainer["Intermodes"] = IntermodesFilterType::New();
 filterContainer["IsoData"] = IsoDataFilterType::New();
 filterContainer["KittlerIllingworth"] = KittlerIllingworthFilterType::New();
 filterContainer["Li"] = LiFilterType::New();
 filterContainer["MaximumEntropy"] = MaximumEntropyFilterType::New();
 filterContainer["Moments"] = MomentsFilterType::New();
 filterContainer["Otsu"] = OtsuFilterType::New();
 filterContainer["RenyiEntropy"] = RenyiEntropyFilterType::New();
 filterContainer["Shanbhag"] = ShanbhagFilterType::New();
 filterContainer["Triangle"] = TriangleFilterType::New();
 filterContainer["Yen"] = YenFilterType::New();
 FilterContainerType::iterator it = filterContainer.begin();
 for (it = filterContainer.begin(); it != filterContainer.end(); ++it)
   {
   (*it).second->SetInsideValue( 255 );
   (*it).second->SetOutsideValue( 0 );
   (*it).second->SetNumberOfHistogramBins( 25 );
   (*it).second->SetInput( reader->GetOutput() );
   try
     {
     (*it).second->Update();
     }
   catch( itk::ExceptionObject & err )
     {
     std::cout << "Caught exception" << std::endl;
     std::cout << err << std::endl;
     continue;
     }
   ConnectedComponentImageFilterType::Pointer connected =
     ConnectedComponentImageFilterType::New ();
   connected->SetInput((*it).second->GetOutput());
   RGBFilterType::Pointer rgbFilter = RGBFilterType::New();
   rgbFilter->SetInput( connected->GetOutput() );
   std::stringstream desc;
   desc << (*it).first << " threshold = "
        << (*it).second->GetThreshold();
   viewer.AddRGBImage(
     rgbFilter->GetOutput(),
     true,
     desc.str());  
   }
 viewer.Visualize();
 return EXIT_SUCCESS;

} </source>

CMakeLists.txt

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

project(ConnectedComponentImageFilterDemo)

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(ConnectedComponentImageFilterDemo MACOSX_BUNDLE ConnectedComponentImageFilterDemo.cxx) target_link_libraries(ConnectedComponentImageFilterDemo

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

</syntaxhighlight>

Download and Build ConnectedComponentImageFilterDemo

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

cd ConnectedComponentImageFilterDemo/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:

./ConnectedComponentImageFilterDemo

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.