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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkConvolutionImageFilter.txx
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reser
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for detail.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkConvolutionImageFilter_txx
#define __itkConvolutionImageFilter_txx
#include "itkConvolutionImageFilter.h"
#include "itkImageBase.h"
#include "itkImageKernelOperator.h"
#include "itkImageRegionIterator.h"
#include "itkNeighborhoodAlgorithm.h"
#include "itkNeighborhoodInnerProduct.h"
#include "itkConstNeighborhoodIterator.h"
#include "itkProgressReporter.h"
#include "vnl/vnl_math.h"
namespace itk {
template<class TInputImage, class TOutputImage>
ConvolutionImageFilter<TInputImage, TOutputImage>
::ConvolutionImageFilter()
{
this->SetNumberOfRequiredInputs( 2 );
m_Normalize = false;
}
template<class TInputImage, class TOutputImage>
ConvolutionImageFilter<TInputImage, TOutputImage>
::~ConvolutionImageFilter()
{
}
template<class TInputImage, class TOutputImage>
void
ConvolutionImageFilter<TInputImage, TOutputImage>
::ThreadedGenerateData(const OutputRegionType& outputRegionForThread, int threadId)
{
// setup the progress reporter
ProgressReporter progress( this, threadId, outputRegionForThread.GetNumberOfPixels() );
typedef ConstNeighborhoodIterator<InputImageType> NeighborhoodIteratorType;
typedef typename NeighborhoodIteratorType::RadiusType RadiusType;
typedef typename RadiusType::SizeValueType SizeValueType;
RadiusType radius;
for( unsigned int i = 0; i < ImageDimension; i++ )
{
radius[i] = Math::Floor< SizeValueType >( 0.5 *
this->GetImageKernelInput()->GetLargestPossibleRegion().GetSize()[i] );
}
double scalingFactor = 1.0;
if( this->GetNormalize() )
{
double sum = 0.0;
ImageRegionConstIterator<InputImageType> It( this->GetImageKernelInput(),
this->GetImageKernelInput()->GetLargestPossibleRegion() );
for( It.GoToBegin(); !It.IsAtEnd(); ++It )
{
sum += static_cast<double>( It.Get() );
}
if( sum != 0.0 )
{
scalingFactor = 1.0 / sum;
}
}
typedef typename NeighborhoodAlgorithm
::ImageBoundaryFacesCalculator<InputImageType> FaceCalculatorType;
FaceCalculatorType faceCalculator;
NeighborhoodInnerProduct<InputImageType, InputPixelType, double> innerProduct;
ImageKernelOperator<InputPixelType, ImageDimension> imageKernelOperator;
imageKernelOperator.SetImageKernel( const_cast<InputImageType*>(
static_cast<const InputImageType*>(
this->ProcessObject::GetInput( 1 ) ) ) );
imageKernelOperator.CreateToRadius( radius );
typename FaceCalculatorType::FaceListType faceList = faceCalculator(
this->GetInput( 0 ), outputRegionForThread, radius );
typename FaceCalculatorType::FaceListType::iterator fit;
for( fit = faceList.begin(); fit != faceList.end(); ++fit )
{
NeighborhoodIteratorType inIt( radius, this->GetInput( 0 ), *fit );
ImageRegionIterator<OutputImageType> outIt( this->GetOutput(), *fit );
for( inIt.GoToBegin(), outIt.GoToBegin(); !inIt.IsAtEnd();
++inIt, ++outIt )
{
outIt.Set( static_cast<OutputPixelType>(
scalingFactor * innerProduct( inIt, imageKernelOperator ) ) );
progress.CompletedPixel();
}
}
}
/**
* ConvolutionImageFilter needs a smaller 2nd input (the image kernel)
* requested region than output requested region. As such, this filter
* needs to provide an implementation for GenerateInputRequestedRegion() in
* order to inform the pipeline execution model.
*
* \sa ProcessObject::GenerateInputRequestedRegion()
*/
template <class TInputImage, class TOutputImage>
void
ConvolutionImageFilter<TInputImage, TOutputImage>
::GenerateInputRequestedRegion()
{
// Simply copy the GenerateInputRequestedRegion() function and
// deal with the image kernel as a special case.
for( unsigned int idx = 0; idx < 2; ++idx )
{
if( this->GetInput( idx ) )
{
// Check whether the input is an image of the appropriate
// dimension (use ProcessObject's version of the GetInput()
// method since it returns the input as a pointer to a
// DataObject as opposed to the subclass version which
// static_casts the input to an TInputImage).
typedef ImageBase<ImageDimension> ImageBaseType;
typename ImageBaseType::ConstPointer constInput
= dynamic_cast<ImageBaseType const *>(
this->ProcessObject::GetInput( idx ) );
if ( constInput.IsNull() )
{
itkExceptionMacro( "Input image " << idx
<< " not correctly specified." );
}
// Input is an image, cast away the constness so we can set
// the requested region.
typename InputImageType::Pointer input =
const_cast<TInputImage *>( this->GetInput( idx ) );
typename InputImageType::RegionType inputRegion;
if( idx == 0 )
{
Superclass::CallCopyOutputRegionToInputRegion( inputRegion,
this->GetOutput()->GetRequestedRegion() );
}
else // the input is the image kernel
{
typename InputImageType::RegionType::SizeType inputSize;
typename InputImageType::RegionType::IndexType inputIndex;
inputSize = this->GetInput(
idx )->GetLargestPossibleRegion().GetSize();
inputIndex = this->GetInput(
idx )->GetLargestPossibleRegion().GetIndex();
inputRegion.SetSize(inputSize);
inputRegion.SetIndex(inputIndex);
}
input->SetRequestedRegion( inputRegion );
}
}
}
template <class TInputImage, class TOutputImage>
void
ConvolutionImageFilter<TInputImage, TOutputImage>
::PrintSelf(std::ostream &os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Normalize: " << m_Normalize << std::endl;
// NOT REALLY MEMBER DATA. Need to fool PrintSelf check
// os << indent << "ImageKernel: " << m_ImageKernel << std::e0ndl;
}
}
#endif
|