ITK  5.0.0
Insight Segmentation and Registration Toolkit
SphinxExamples/src/Core/Common/IterateOverARegionWithAShapedNeighborhoodIterator/Code.cxx
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "itkImage.h"
int main(int, char*[])
{
constexpr unsigned int Dimension = 2;
// Notice that char type pixel values will not appear
// properly on the command prompt therefore for the
// demonstration purposes it is best to use the int
// type, however in real applications iterators have
// no problems with char type images.
//using ImageType = itk::Image<unsigned char, 2>;
using PixelType = unsigned int;
ImageType::Pointer image = ImageType::New();
start.Fill(0);
size.Fill(10);
ImageType::RegionType region(start,size);
image->SetRegions(region);
image->Allocate();
image->FillBuffer(0);
IteratorType::RadiusType radius;
radius.Fill(1);
IteratorType iterator(radius, image, image->GetLargestPossibleRegion());
std::cout << "By default there are " << iterator.GetActiveIndexListSize()
<< " active indices." << std::endl;
IteratorType::OffsetType top = {{0,-1}};
iterator.ActivateOffset(top);
IteratorType::OffsetType bottom = {{0,1}};
iterator.ActivateOffset(bottom);
std::cout << "Now there are " << iterator.GetActiveIndexListSize()
<< " active indices." << std::endl;
IteratorType::IndexListType indexList = iterator.GetActiveIndexList();
IteratorType::IndexListType::const_iterator
listIterator = indexList.begin();
while (listIterator != indexList.end())
{
std::cout << *listIterator << " ";
++listIterator;
}
std::cout << std::endl;
// Note that ZeroFluxNeumannBoundaryCondition is used by default so even
// pixels outside of the image will have valid values (equivalent to
// their neighbors just inside the image)
for( iterator.GoToBegin(); !iterator.IsAtEnd(); ++iterator )
{
std::cout << "New position: " << std::endl;
IteratorType::ConstIterator ci = iterator.Begin();
while( !ci.IsAtEnd() )
{
std::cout << "Centered at " << iterator.GetIndex() << std::endl;
std::cout << "Neighborhood index " << ci.GetNeighborhoodIndex()
<< " is offset " << ci.GetNeighborhoodOffset()
<< " and has value " << ci.Get()
<< " The real index is "
<< iterator.GetIndex() + ci.GetNeighborhoodOffset()
<< std::endl;
++ci;
}
}
std::cout << std::endl;
return EXIT_SUCCESS;
}