ITK/Examples/ImageProcessing/ConnectedComponentImageFilter
From KitwarePublic
Contents |
ConnectedComponentImageFilter.cxx
#include "itkImage.h" #include "itkImageFileWriter.h" #include "itkConnectedComponentImageFilter.h" #include "itkRescaleIntensityImageFilter.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::ConnectedComponentImageFilter <ImageType, ImageType > ConnectedComponentImageFilterType; ConnectedComponentImageFilterType::Pointer labelFilter = ConnectedComponentImageFilterType::New (); labelFilter->SetInput(image); labelFilter->Update(); typedef itk::RescaleIntensityImageFilter< ImageType, ImageType > RescaleFilterType; RescaleFilterType::Pointer rescaleFilter = RescaleFilterType::New(); rescaleFilter->SetOutputMinimum(0); rescaleFilter->SetOutputMaximum(255); rescaleFilter->SetInput(labelFilter->GetOutput()); QuickView viewer; viewer.AddImage<ImageType>( image, false ); viewer.AddImage<ImageType>( rescaleFilter->GetOutput(), false ); viewer.Visualize(); return EXIT_SUCCESS; } void CreateImage(ImageType::Pointer image) { // Create an image with 2 connected components ImageType::RegionType region; ImageType::IndexType start; start[0] = 0; start[1] = 0; ImageType::SizeType size; unsigned int NumRows = 200; unsigned int NumCols = 300; size[0] = NumRows; size[1] = NumCols; region.SetSize(size); region.SetIndex(start); image->SetRegions(region); image->Allocate(); // Make a square for(unsigned int r = 20; r < 80; r++) { for(unsigned int c = 30; c < 100; c++) { ImageType::IndexType pixelIndex; pixelIndex[0] = r; pixelIndex[1] = c; image->SetPixel(pixelIndex, 255); } } // Make another square for(unsigned int r = 100; r < 130; r++) { for(unsigned int c = 115; c < 160; c++) { ImageType::IndexType pixelIndex; pixelIndex[0] = r; pixelIndex[1] = c; image->SetPixel(pixelIndex, 255); } } }
CMakeLists.txt
cmake_minimum_required(VERSION 2.8) project(ConnectedComponentImageFilter) find_package(ItkVtkGlue REQUIRED) include(${ItkVtkGlue_USE_FILE}) add_executable(ConnectedComponentImageFilter ConnectedComponentImageFilter.cxx) target_link_libraries(ConnectedComponentImageFilter ItkVtkGlue ${VTK_LIBRARIES} ${ITK_LIBRARIES})
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
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.
