1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* 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
*
* https://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.
*
*=========================================================================*/
#ifndef itkComposeImageFilter_hxx
#define itkComposeImageFilter_hxx
#include "itkImageRegionIterator.h"
#include "itkTotalProgressReporter.h"
namespace itk
{
//----------------------------------------------------------------------------
template <typename TInputImage, typename TOutputImage>
ComposeImageFilter<TInputImage, TOutputImage>::ComposeImageFilter()
{
int nbOfComponents = NumericTraits<OutputPixelType>::GetLength({});
nbOfComponents = std::max(1, nbOfComponents); // require at least one input
this->SetNumberOfRequiredInputs(nbOfComponents);
this->DynamicMultiThreadingOn();
this->ThreaderUpdateProgressOff();
}
//----------------------------------------------------------------------------
template <typename TInputImage, typename TOutputImage>
void
ComposeImageFilter<TInputImage, TOutputImage>::SetInput1(const InputImageType * image1)
{
// The ProcessObject is not const-correct so the const_cast is required here
this->SetNthInput(0, const_cast<InputImageType *>(image1));
}
//----------------------------------------------------------------------------
template <typename TInputImage, typename TOutputImage>
void
ComposeImageFilter<TInputImage, TOutputImage>::SetInput2(const InputImageType * image2)
{
// The ProcessObject is not const-correct so the const_cast is required here
this->SetNthInput(1, const_cast<InputImageType *>(image2));
}
//----------------------------------------------------------------------------
template <typename TInputImage, typename TOutputImage>
void
ComposeImageFilter<TInputImage, TOutputImage>::SetInput3(const InputImageType * image3)
{
// The ProcessObject is not const-correct so the const_cast is required here
this->SetNthInput(2, const_cast<InputImageType *>(image3));
}
//----------------------------------------------------------------------------
template <typename TInputImage, typename TOutputImage>
void
ComposeImageFilter<TInputImage, TOutputImage>::GenerateOutputInformation()
{
// Override the method in itkImageSource, so we can set the vector length of
// the output itk::VectorImage
this->Superclass::GenerateOutputInformation();
OutputImageType * output = this->GetOutput();
output->SetNumberOfComponentsPerPixel(static_cast<unsigned int>(this->GetNumberOfIndexedInputs()));
}
//----------------------------------------------------------------------------
template <typename TInputImage, typename TOutputImage>
void
ComposeImageFilter<TInputImage, TOutputImage>::BeforeThreadedGenerateData()
{
// Check to verify all inputs are specified and have the same metadata,
// spacing etc...
const auto numberOfInputs = static_cast<const unsigned int>(this->GetNumberOfIndexedInputs());
RegionType region;
for (unsigned int i = 0; i < numberOfInputs; ++i)
{
auto * input = itkDynamicCastInDebugMode<InputImageType *>(this->ProcessObject::GetInput(i));
if (!input)
{
itkExceptionMacro("Input " << i << " not set!");
}
if (i == 0)
{
region = input->GetLargestPossibleRegion();
}
else if (input->GetLargestPossibleRegion() != region)
{
itkExceptionMacro("All Inputs must have the same dimensions.");
}
}
}
//----------------------------------------------------------------------------
template <typename TInputImage, typename TOutputImage>
void
ComposeImageFilter<TInputImage, TOutputImage>::DynamicThreadedGenerateData(const RegionType & outputRegionForThread)
{
typename OutputImageType::Pointer outputImage = static_cast<OutputImageType *>(this->ProcessObject::GetOutput(0));
TotalProgressReporter progress(this, outputImage->GetRequestedRegion().GetNumberOfPixels());
ImageRegionIterator<OutputImageType> oit(outputImage, outputRegionForThread);
InputIteratorContainerType inputItContainer;
for (unsigned int i = 0; i < this->GetNumberOfIndexedInputs(); ++i)
{
const InputImageType * inputImage = this->GetInput(i);
InputIteratorType iit(inputImage, outputRegionForThread);
iit.GoToBegin();
inputItContainer.push_back(iit);
}
OutputPixelType pix;
NumericTraits<OutputPixelType>::SetLength(pix, static_cast<unsigned int>(this->GetNumberOfIndexedInputs()));
while (!oit.IsAtEnd())
{
ComputeOutputPixel(pix, inputItContainer);
oit.Set(pix);
++oit;
progress.CompletedPixel();
}
}
} // end namespace itk
#endif
|