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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkCurvatureRegistrationFilter.txx,v $
Language: C++
Date: $Date: 2006-03-19 04:36:53 $
Version: $Revision: 1.4 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
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.
=========================================================================*/
#if defined(USE_FFTWF) || defined(USE_FFTWD)
#ifndef __itkCurvatureRegistrationFilter_txx
#define __itkCurvatureRegistrationFilter_txx
#include "itkCurvatureRegistrationFilter.h"
#include "itkImageRegionIterator.h"
#include "itkImageRegionConstIterator.h"
#include "itkImageRegionConstIteratorWithIndex.h"
#include "vnl/vnl_math.h"
namespace itk {
/*
* Default constructor
*/
template <class TFixedImage, class TMovingImage, class TDeformationField, class TImageForceFunction>
CurvatureRegistrationFilter<TFixedImage,TMovingImage,TDeformationField,TImageForceFunction>
::CurvatureRegistrationFilter()
{
typename RegistrationFunctionType::Pointer drfp;
drfp = RegistrationFunctionType::New();
this->SetDifferenceFunction( static_cast<FiniteDifferenceFunctionType *>(
drfp.GetPointer() ) );
this->SetTimeStep( 100.0 );
this->SetConstraintWeight( 0.01 );
m_PlanBackwardDCT = m_PlanForwardDCT = NULL;
m_DeformationFieldComponentImage = m_DeformationFieldComponentImageDCT = NULL;
for ( int dim = 0; dim < ImageDimension; ++dim )
{
m_DiagonalElements[dim] = NULL;
}
}
/*
* Destructor.
*/
template <class TFixedImage, class TMovingImage, class TDeformationField, class TImageForceFunction>
CurvatureRegistrationFilter<TFixedImage,TMovingImage,TDeformationField,TImageForceFunction>
::~CurvatureRegistrationFilter()
{
if ( m_PlanForwardDCT )
fftw_destroy_plan( m_PlanForwardDCT );
if ( m_PlanBackwardDCT )
fftw_destroy_plan( m_PlanBackwardDCT );
for ( int dim = 0; dim < ImageDimension; ++dim )
if ( m_DiagonalElements[dim] )
delete[] m_DiagonalElements[dim];
}
template <class TFixedImage, class TMovingImage, class TDeformationField, class TImageForceFunction>
void
CurvatureRegistrationFilter<TFixedImage,TMovingImage,TDeformationField,TImageForceFunction>
::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf( os, indent );
}
/*
* Set the function state values before each iteration
*/
template <class TFixedImage, class TMovingImage, class TDeformationField, class TImageForceFunction>
void
CurvatureRegistrationFilter<TFixedImage,TMovingImage,TDeformationField,TImageForceFunction>
::Initialize()
{
RegistrationFunctionType *drfp =
dynamic_cast<RegistrationFunctionType *>
(this->GetDifferenceFunction().GetPointer());
if( !drfp )
{
itkExceptionMacro( <<
"Could not cast difference function to CurvatureRegistrationFunction" );
}
drfp->SetDeformationField( this->GetDeformationField() );
const size_t numberOfPixels = this->GetFixedImage()->GetLargestPossibleRegion().GetNumberOfPixels();
// allocate temporary storage for DCT, potentially aligned for SIMD processing
if ( m_DeformationFieldComponentImage )
fftw_free( m_DeformationFieldComponentImage );
m_DeformationFieldComponentImage = static_cast<RealTypeDFT*>( fftw_malloc( numberOfPixels * sizeof( RealTypeDFT ) ) );
if ( m_DeformationFieldComponentImageDCT )
fftw_free( m_DeformationFieldComponentImageDCT );
m_DeformationFieldComponentImageDCT = static_cast<RealTypeDFT*>( fftw_malloc( numberOfPixels * sizeof( RealTypeDFT ) ) );
fftw_r2r_kind fftForward[ImageDimension];
fftw_r2r_kind fftBackward[ImageDimension];
int fixedImageDimensionsFFTW[ImageDimension];
for ( int dim = 0; dim < ImageDimension; ++dim )
{
m_FixedImageDimensions[dim] = fixedImageDimensionsFFTW[ImageDimension-1-dim] = // reverse order for FFTW!
this->GetFixedImage()->GetLargestPossibleRegion().GetSize( dim );
//#define SLOW_DCT
#ifdef SLOW_DCT
fftForward[dim] = FFTW_REDFT00;
fftBackward[dim] = FFTW_REDFT00;
#else
/*
There is something funky going on numerically with DCTs, so FFTW
gives us the choice to either take a factor-2 performance hit
(which is what we're doing) or use the following:
*/
fftForward[dim] = FFTW_REDFT01;
fftBackward[dim] = FFTW_REDFT10;
/*
Not sure whether the latter works, since it involves different boundary
conditions that my screw us. Also, is there a shift of the DCT coefficients
that would require us to change the computation of the filter elements in
m_DiagonalElements below??
Strangely enough, the fast method seems to produce better results.
*/
#endif
}
if ( m_PlanForwardDCT )
fftw_destroy_plan( m_PlanForwardDCT );
m_PlanForwardDCT = fftw_plan_r2r
( ImageDimension, fixedImageDimensionsFFTW, m_DeformationFieldComponentImage,
m_DeformationFieldComponentImageDCT, fftForward, FFTW_MEASURE | FFTW_DESTROY_INPUT );
if ( m_PlanBackwardDCT )
fftw_destroy_plan( m_PlanBackwardDCT );
m_PlanBackwardDCT = fftw_plan_r2r
( ImageDimension, fixedImageDimensionsFFTW, m_DeformationFieldComponentImageDCT,
m_DeformationFieldComponentImage, fftBackward, FFTW_MEASURE | FFTW_DESTROY_INPUT );
// compute components of diagonal matrix elements
for ( int dim = 0; dim < ImageDimension; ++dim )
{
if ( m_DiagonalElements[dim] )
delete[] m_DiagonalElements[dim];
m_DiagonalElements[dim] = new RealTypeDFT[m_FixedImageDimensions[dim]];
for ( int idx = 0; idx < m_FixedImageDimensions[dim]; ++idx )
{
#ifdef SLOW_DCT
m_DiagonalElements[dim][idx] = -2 + 2 * vcl_cos(vnl_math::pi * idx / m_FixedImageDimensions[dim] );
#else
m_DiagonalElements[dim][idx] = -2 + 2 * vcl_cos(vnl_math::pi * (idx+1) / m_FixedImageDimensions[dim] );
#endif
}
}
// call the superclass implementation
Superclass::Initialize();
}
/*
* Get the metric value from the difference function
*/
template <class TFixedImage, class TMovingImage, class TDeformationField, class TImageForceFunction>
double
CurvatureRegistrationFilter<TFixedImage,TMovingImage,TDeformationField,TImageForceFunction>
::GetMetric() const
{
RegistrationFunctionType *drfp =
dynamic_cast<RegistrationFunctionType *>
(this->GetDifferenceFunction().GetPointer());
if( !drfp )
{
itkExceptionMacro( <<
"Could not cast difference function to CurvatureRegistrationFunction" );
}
return drfp->GetMetric();
}
/*
* Get the metric value from the difference function
*/
template <class TFixedImage, class TMovingImage, class TDeformationField, class TImageForceFunction>
void
CurvatureRegistrationFilter<TFixedImage,TMovingImage,TDeformationField,TImageForceFunction>
::ApplyUpdate(TimeStepType dt)
{
DeformationFieldPointer update = this->GetUpdateBuffer();
ImageRegionConstIterator<DeformationFieldType> itInDeformation;
ImageRegionIterator<DeformationFieldType> itOutDeformation;
ImageRegionConstIterator<DeformationFieldType> itInUpdate;
ImageRegionConstIteratorWithIndex<FixedImageType> fixedImageIteratorWithIndex;
itInDeformation = ImageRegionConstIterator<DeformationFieldType>
( this->GetDeformationField(), this->GetDeformationField()->GetLargestPossibleRegion() );
itOutDeformation = ImageRegionIterator<DeformationFieldType>
( this->GetDeformationField(), this->GetDeformationField()->GetLargestPossibleRegion() );
itInUpdate = ImageRegionConstIterator<DeformationFieldType>
( update, update->GetLargestPossibleRegion() );
fixedImageIteratorWithIndex = ImageRegionConstIteratorWithIndex<FixedImageType>
( this->GetFixedImage(), this->GetFixedImage()->GetLargestPossibleRegion() );
const size_t numberOfPixels = this->GetFixedImage()->GetLargestPossibleRegion().GetNumberOfPixels();
RealTypeDFT normFactorDCT =
#ifdef SLOW_DCT
1.0 / (numberOfPixels-1); // norm factor for fw/bw DCT
#else
1.0 / numberOfPixels; // norm factor for fw/bw DCT
#endif
for ( int dim = 0; dim < ImageDimension; ++dim )
normFactorDCT *= 0.5;
for ( unsigned int l = 0; l < DeformationVectorDimension; ++l )
{
// extract l-th component of deformation field.
itInDeformation.GoToBegin();
itInUpdate.GoToBegin();
for ( size_t offset = 0; (offset < numberOfPixels) && !itInDeformation.IsAtEnd() && !itInUpdate.IsAtEnd(); ++offset )
{
this->m_DeformationFieldComponentImage[offset] = this->m_TimeStep * itInUpdate.Value()[l] + itInDeformation.Value()[l];
++itInUpdate;
++itInDeformation;
}
// run DFT
fftw_execute( this->m_PlanForwardDCT );
// multiply matrix diagonal elements
fixedImageIteratorWithIndex.GoToBegin();
size_t offset = 0;
while ( ! fixedImageIteratorWithIndex.IsAtEnd() )
{
typename TFixedImage::IndexType index = fixedImageIteratorWithIndex.GetIndex();
RealTypeDFT d = 0;
for ( int dim = 0; dim < ImageDimension; ++dim )
{
d += m_DiagonalElements[dim][ index[ dim ] ];
}
d *= (d * this->m_TimeStep * this->m_ConstraintWeight);
d += 1.0;
this->m_DeformationFieldComponentImageDCT[offset++] /= d;
++fixedImageIteratorWithIndex;
}
// run (inverse) DFT
fftw_execute( this->m_PlanBackwardDCT );
// update deformation field
itOutDeformation.GoToBegin();
for ( size_t offset = 0; (offset < numberOfPixels) && ! itOutDeformation.IsAtEnd(); ++offset )
{
itOutDeformation.Value()[l] = this->m_DeformationFieldComponentImage[offset] * normFactorDCT;
++itOutDeformation;
}
}
this->GetDeformationField()->Modified();
}
} // end namespace itk
#endif
#endif //defined(USE_FFTWF) || defined(USE_FFTWD)
|