|
|
(One intermediate revision by one other user not shown) |
Line 1: |
Line 1: |
| This example is related to:
| | {{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 releases. In many cases, the examples on this page no longer conform to the best practices for modern ITK versions. |
| http://www.itk.org/Wiki/ITK/Examples/ImageProcessing/NthElementImageAdaptor
| | }} |
| | |
| It simply demonstrates that to use the output of an ImageAdaptor the template argument of the next filter in the pipeline must be the AdaptorType.
| |
| | |
| ==ProcessingNthImageElement.cxx==
| |
| <source lang="cpp">
| |
| #include "itkImageAdaptor.h"
| |
| #include "itkImageRegionIterator.h"
| |
| #include "itkNthElementImageAdaptor.h"
| |
| #include "itkBinomialBlurImageFilter.h"
| |
| | |
| typedef itk::Image<itk::CovariantVector< float, 3>, 2> VectorImageType;
| |
| | |
| static void CreateImage(VectorImageType::Pointer image);
| |
| | |
| int main(int, char *[])
| |
| {
| |
| VectorImageType::Pointer image = VectorImageType::New();
| |
| CreateImage(image);
| |
| | |
| typedef itk::NthElementImageAdaptor<VectorImageType,
| |
| float> ImageAdaptorType;
| |
| | |
| ImageAdaptorType::Pointer adaptor = ImageAdaptorType::New();
| |
| | |
| adaptor->SelectNthElement(0);
| |
| adaptor->SetImage(image);
| |
| | |
| typedef itk::BinomialBlurImageFilter<ImageAdaptorType, itk::Image<float,2> > BlurFilterType;
| |
| BlurFilterType::Pointer blurFilter = BlurFilterType::New();
| |
| blurFilter->SetInput(adaptor);
| |
| blurFilter->Update();
| |
|
| |
| return EXIT_SUCCESS;
| |
| }
| |
| | |
| void CreateImage(VectorImageType::Pointer image)
| |
| {
| |
| VectorImageType::IndexType start;
| |
| start.Fill(0);
| |
| | |
| VectorImageType::SizeType size;
| |
| size.Fill(2);
| |
| | |
| VectorImageType::RegionType region;
| |
| region.SetSize(size);
| |
| region.SetIndex(start);
| |
| | |
| image->SetRegions(region); | |
| image->Allocate();
| |
| | |
| itk::ImageRegionIterator<VectorImageType> imageIterator(image,image->GetLargestPossibleRegion());
| |
| itk::CovariantVector<float, 3> vec;
| |
| vec[0] = 1;
| |
| vec[1] = 2;
| |
| vec[2] = 3;
| |
| | |
| while(!imageIterator.IsAtEnd())
| |
| {
| |
| imageIterator.Set(vec);
| |
| | |
| ++imageIterator;
| |
| }
| |
| }
| |
| </source>
| |
| | |
| {{ITKCMakeLists|ProcessingNthImageElement}}
| |