ITK/Examples/ImageProcessing/BinaryImageToShapeLabelMapFilter: Difference between revisions

From KitwarePublic
< ITK‎ | Examples
Jump to navigationJump to search
No edit summary
(Some updates)
Line 7: Line 7:


typedef itk::Image<unsigned char, 2>  ImageType;
typedef itk::Image<unsigned char, 2>  ImageType;
static void CreateImage(ImageType::Pointer image);
void CreateImage(ImageType::Pointer image);


int main(int, char *[])
int main(int, char *[])
Line 13: Line 13:
   ImageType::Pointer image = ImageType::New();
   ImageType::Pointer image = ImageType::New();
   CreateImage(image);
   CreateImage(image);
 
   typedef itk::BinaryImageToShapeLabelMapFilter<ImageType> LabelMapFilterType;
   typedef itk::BinaryImageToShapeLabelMapFilter<ImageType> BinaryImageToShapeLabelMapFilterType;
   LabelMapFilterType::Pointer labelMapFilter = LabelMapFilterType::New();
   BinaryImageToShapeLabelMapFilterType::Pointer binaryImageToShapeLabelMapFilter = BinaryImageToShapeLabelMapFilterType::New();
   labelMapFilter->SetInput(image);
   binaryImageToShapeLabelMapFilter->SetInput(image);
   labelMapFilter->Update();
   binaryImageToShapeLabelMapFilter->Update();
   LabelMapFilterType::OutputImageType * labelMap = labelMapFilter->GetOutput();
 
 
   // The output of this filter is an itk::ShapeLabelMap, which contains itk::ShapeLabelObject's
   std::cout << "There are " << labelMap->GetNumberOfLabelObjects() << " objects." << std::endl;
   std::cout << "There are " << binaryImageToShapeLabelMapFilter->GetOutput()->GetNumberOfLabelObjects() << " objects." << std::endl;
   for(unsigned int i = 0; i < labelMap->GetNumberOfLabelObjects(); i++)
 
  // Loop over all of the blobs
   for(unsigned int i = 0; i < binaryImageToShapeLabelMapFilter->GetOutput()->GetNumberOfLabelObjects(); i++)
     {
     {
     std::cout << "Object " << i << " has bounding box " << labelMap->GetNthLabelObject(i)->GetBoundingBox() << std::endl;
    BinaryImageToShapeLabelMapFilterType::OutputImageType::LabelObjectType* labelObject = binaryImageToShapeLabelMapFilter->GetOutput()->GetNthLabelObject(i);
    // Output the bounding box (an example of one possible property) of the ith region
     std::cout << "Object " << i << " has bounding box " << labelObject->GetBoundingBox() << std::endl;
     }
     }
 
   return EXIT_SUCCESS;
   return EXIT_SUCCESS;
}
}
Line 31: Line 35:
void CreateImage(ImageType::Pointer image)
void CreateImage(ImageType::Pointer image)
{
{
  // Create a black image with a white square
   ImageType::IndexType start;
   ImageType::IndexType start;
   start.Fill(0);
   start.Fill(0);
Line 47: Line 52:
   // Make a square
   // Make a square
   while(!imageIterator.IsAtEnd())
   while(!imageIterator.IsAtEnd())
  {
    {
     if((imageIterator.GetIndex()[0] > 5 && imageIterator.GetIndex()[0] < 10) &&
     if((imageIterator.GetIndex()[0] > 5 && imageIterator.GetIndex()[0] < 10) &&
       (imageIterator.GetIndex()[1] > 5 && imageIterator.GetIndex()[1] < 10) )
       (imageIterator.GetIndex()[1] > 5 && imageIterator.GetIndex()[1] < 10) )
Line 59: Line 64:


     ++imageIterator;
     ++imageIterator;
  }
    }


  typedef  itk::ImageFileWriter< ImageType  > WriterType;
  WriterType::Pointer writer = WriterType::New();
  writer->SetFileName("image.png");
  writer->SetInput(image);
  writer->Update();
}
}
</source>
</source>


{{ITKCMakeLists|BinaryImageToShapeLabelMapFilter}}
{{ITKCMakeLists|BinaryImageToShapeLabelMapFilter}}

Revision as of 01:37, 22 June 2011

BinaryImageToShapeLabelMapFilter.cxx

<source lang="cpp">

  1. include "itkImage.h"
  2. include "itkImageFileWriter.h"
  3. include "itkImageRegionIterator.h"
  4. include "itkBinaryImageToShapeLabelMapFilter.h"

typedef itk::Image<unsigned char, 2> ImageType; void CreateImage(ImageType::Pointer image);

int main(int, char *[]) {

 ImageType::Pointer image = ImageType::New();
 CreateImage(image);
 typedef itk::BinaryImageToShapeLabelMapFilter<ImageType> BinaryImageToShapeLabelMapFilterType;
 BinaryImageToShapeLabelMapFilterType::Pointer binaryImageToShapeLabelMapFilter = BinaryImageToShapeLabelMapFilterType::New();
 binaryImageToShapeLabelMapFilter->SetInput(image);
 binaryImageToShapeLabelMapFilter->Update();
 // The output of this filter is an itk::ShapeLabelMap, which contains itk::ShapeLabelObject's
 std::cout << "There are " << binaryImageToShapeLabelMapFilter->GetOutput()->GetNumberOfLabelObjects() << " objects." << std::endl;
 // Loop over all of the blobs
 for(unsigned int i = 0; i < binaryImageToShapeLabelMapFilter->GetOutput()->GetNumberOfLabelObjects(); i++)
   {
   BinaryImageToShapeLabelMapFilterType::OutputImageType::LabelObjectType* labelObject = binaryImageToShapeLabelMapFilter->GetOutput()->GetNthLabelObject(i);
   // Output the bounding box (an example of one possible property) of the ith region
   std::cout << "Object " << i << " has bounding box " << labelObject->GetBoundingBox() << std::endl;
   }
 return EXIT_SUCCESS;

}

void CreateImage(ImageType::Pointer image) {

 // Create a black image with a white square
 ImageType::IndexType start;
 start.Fill(0);
 ImageType::SizeType size;
 size.Fill(20);
 ImageType::RegionType region;
 region.SetSize(size);
 region.SetIndex(start);
 image->SetRegions(region);
 image->Allocate();
 itk::ImageRegionIterator<ImageType> imageIterator(image,image->GetLargestPossibleRegion());
 // Make a square
 while(!imageIterator.IsAtEnd())
   {
   if((imageIterator.GetIndex()[0] > 5 && imageIterator.GetIndex()[0] < 10) &&
     (imageIterator.GetIndex()[1] > 5 && imageIterator.GetIndex()[1] < 10) )
       {
       imageIterator.Set(255);
       }
     else
       {
       imageIterator.Set(0);
       }
   ++imageIterator;
   }
 typedef  itk::ImageFileWriter< ImageType  > WriterType;
 WriterType::Pointer writer = WriterType::New();
 writer->SetFileName("image.png");
 writer->SetInput(image);
 writer->Update();

}

</source>

CMakeLists.txt

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

project(BinaryImageToShapeLabelMapFilter)

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

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

endif()

add_executable(BinaryImageToShapeLabelMapFilter MACOSX_BUNDLE BinaryImageToShapeLabelMapFilter.cxx)

if( "${ITK_VERSION_MAJOR}" LESS 4 )

 target_link_libraries(BinaryImageToShapeLabelMapFilter ITKReview ${ITK_LIBRARIES})

else( "${ITK_VERSION_MAJOR}" LESS 4 )

 target_link_libraries(BinaryImageToShapeLabelMapFilter ${ITK_LIBRARIES})

endif( "${ITK_VERSION_MAJOR}" LESS 4 )

</syntaxhighlight>

Download and Build BinaryImageToShapeLabelMapFilter

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

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

./BinaryImageToShapeLabelMapFilter

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.

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.