ITK/Examples/Iterators/ConstNeighborhoodIterator: Difference between revisions

From KitwarePublic
< ITK‎ | Examples
Jump to navigationJump to search
No edit summary
(Deprecated content that is moved to sphinx)
 
Line 1: Line 1:
This example demonstrates how to traverse an itkImage with access to a rectangular neighborhood around the center pixel of the iterator (without write access to the pixels).
{{warning|1=The media wiki content on this page is no longer maintained. The examples presented on the https://itk.org/Wiki/pages likely require ITK version 4.13 or earlier releasesIn many cases, the examples on this page no longer conform to the best practices for modern ITK versions.
 
}}
==ConstNeighborhoodIterator.cxx==
<source lang="cpp">
#include "itkImage.h"
#include "itkImageFileReader.h"
#include "itkConstNeighborhoodIterator.h"
 
int main(int argc, char*argv[])
{
  if(argc < 2)
    {
    std::cerr << "Required: filename" << std::endl;
    return EXIT_FAILURE;
    }
 
  typedef itk::Image<unsigned char, 2> ImageType;
 
  typedef itk::ImageFileReader<ImageType> ReaderType;
  ReaderType::Pointer reader = ReaderType::New();
  reader->SetFileName(argv[1]);
  reader->Update();
 
  ImageType::Pointer image = reader->GetOutput();
 
  ImageType::SizeType regionSize;
  regionSize[0] = 50;
  regionSize[1] = 1;
 
  ImageType::IndexType regionIndex;
  regionIndex[0] = 0;
  regionIndex[1] = 0;
 
  ImageType::RegionType region;
  region.SetSize(regionSize);
  region.SetIndex(regionIndex);
 
  ImageType::SizeType radius;
  radius[0] = 1;
   radius[1] = 1;
 
  itk::ConstNeighborhoodIterator<ImageType> iterator(radius, image,region);
 
 
  while(!iterator.IsAtEnd())
    {
    for(unsigned int i = 0; i < 9; i++)
      {
      ImageType::IndexType index = iterator.GetIndex(i);
      std::cout << index[0] << " " << index[1] << std::endl;
 
      bool IsInBounds;
      iterator.GetPixel(i, IsInBounds);
 
      }
    ++iterator;
    }
 
 
  return EXIT_SUCCESS;
}
 
</source>
 
{{ITKCMakeLists|{{SUBPAGENAME}}}}

Latest revision as of 14:51, 6 June 2019

Warning: The media wiki content on this page is no longer maintained. The examples presented on the https://itk.org/Wiki/* pages likely require ITK version 4.13 or earlier releases. In many cases, the examples on this page no longer conform to the best practices for modern ITK versions.