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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkDenseFiniteDifferenceImageFilter.h,v $
Language: C++
Date: $Date: 2007-02-08 16:56:10 $
Version: $Revision: 1.23 $
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.
=========================================================================*/
#ifndef __itkDenseFiniteDifferenceImageFilter_h_
#define __itkDenseFiniteDifferenceImageFilter_h_
#include "itkFiniteDifferenceImageFilter.h"
#include "itkMultiThreader.h"
namespace itk {
/**
* \class DenseFiniteDifferenceImageFilter
*
* This filter implements a layer of the finite difference solver hierarchy that
* performs ``dense'' iteration, ie. iteration over all pixels in the input and
* output at each change calculation and update step. Dense iteration is in
* contrast to a ``sparse'' iteration over a subset of the pixels. See
* documentation for FiniteDifferenceImageFilter for an overview of the
* iterative finite difference algorithm:
*
* \par
* \f$u_{\mathbf{i}}^{n+1}=u^n_{\mathbf{i}}+\Delta u^n_{\mathbf{i}}\Delta t\f$
*
* \par
* The generic code for performing iterations and updates at each time
* step is inherited from the parent class. This class defines an update
* buffer for \f$ \Delta \f$ and the methods CalculateChange() and
* ApplyUpdate(). These methods are designed to automatically thread their
* execution. \f$ \Delta \f$ is defined as an image of identical size and type
* as the output image.
*
* \par
* As we descend through each layer in the hierarchy, we know more and more
* about the specific application of our filter. At this level, we
* have committed to iteration over each pixel in an image. We take advantage
* of that knowledge to multithread the iteration and update methods.
*
* \par Inputs and Outputs
* This is an image to image filter. The specific types of the images are not
* fixed at this level in the hierarchy.
*
* \par How to use this class
* This filter is only one layer in a branch the finite difference solver
* hierarchy. It does not define the function used in the CalculateChange() and
* it does not define the stopping criteria (Halt method). To use this class,
* subclass it to a specific instance that supplies a function and Halt()
* method.
*
* \ingroup ImageFilters
* \sa FiniteDifferenceImageFilter */
template <class TInputImage, class TOutputImage>
class ITK_EXPORT DenseFiniteDifferenceImageFilter
: public FiniteDifferenceImageFilter<TInputImage, TOutputImage>
{
public:
/** Standard class typedefs */
typedef DenseFiniteDifferenceImageFilter Self;
typedef FiniteDifferenceImageFilter<TInputImage, TOutputImage> Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Run-time type information (and related methods) */
itkTypeMacro(DenseFiniteDifferenceImageFilter, ImageToImageFilter );
/** Convenient typedefs */
typedef typename Superclass::InputImageType InputImageType;
typedef typename Superclass::OutputImageType OutputImageType;
typedef typename Superclass::FiniteDifferenceFunctionType
FiniteDifferenceFunctionType;
/** Dimensionality of input and output data is assumed to be the same.
* It is inherited from the superclass. */
itkStaticConstMacro(ImageDimension, unsigned int,Superclass::ImageDimension);
/** The pixel type of the output image will be used in computations.
* Inherited from the superclass. */
typedef typename Superclass::PixelType PixelType;
/** The value type of a time step. Inherited from the superclass. */
typedef typename Superclass::TimeStepType TimeStepType;
/** The container type for the update buffer. */
typedef OutputImageType UpdateBufferType;
#ifdef ITK_USE_CONCEPT_CHECKING
/** Begin concept checking */
itkConceptMacro(OutputTimesDoubleCheck,
(Concept::MultiplyOperator<PixelType, double>));
itkConceptMacro(OutputAdditiveOperatorsCheck,
(Concept::AdditiveOperators<PixelType>));
itkConceptMacro(InputConvertibleToOutputCheck,
(Concept::Convertible<typename TInputImage::PixelType, PixelType>));
/** End concept checking */
#endif
protected:
DenseFiniteDifferenceImageFilter()
{ m_UpdateBuffer = UpdateBufferType::New(); }
~DenseFiniteDifferenceImageFilter() {}
void PrintSelf(std::ostream& os, Indent indent) const;
/** A simple method to copy the data from the input to the output. ( Supports
* "read-only" image adaptors in the case where the input image type converts
* to a different output image type. ) */
virtual void CopyInputToOutput();
/** This method applies changes from the m_UpdateBuffer to the output using
* the ThreadedApplyUpdate() method and a multithreading mechanism. "dt" is
* the time step to use for the update of each pixel. */
virtual void ApplyUpdate(TimeStepType dt);
/** Method to allow subclasses to get direct access to the update
* buffer */
virtual UpdateBufferType* GetUpdateBuffer()
{ return m_UpdateBuffer; }
/** This method populates an update buffer with changes for each pixel in the
* output using the ThreadedCalculateChange() method and a multithreading
* mechanism. Returns value is a time step to be used for the update. */
virtual TimeStepType CalculateChange();
/** This method allocates storage in m_UpdateBuffer. It is called from
* Superclass::GenerateData(). */
virtual void AllocateUpdateBuffer();
/** The type of region used for multithreading */
typedef typename UpdateBufferType::RegionType ThreadRegionType;
/** Does the actual work of updating the output from the UpdateContainer over
* an output region supplied by the multithreading mechanism.
* \sa ApplyUpdate
* \sa ApplyUpdateThreaderCallback */
virtual
void ThreadedApplyUpdate(TimeStepType dt,
const ThreadRegionType ®ionToProcess,
int threadId);
/** Does the actual work of calculating change over a region supplied by
* the multithreading mechanism.
* \sa CalculateChange
* \sa CalculateChangeThreaderCallback */
virtual
TimeStepType ThreadedCalculateChange(const ThreadRegionType ®ionToProcess,
int threadId);
private:
DenseFiniteDifferenceImageFilter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
/** Structure for passing information into static callback methods. Used in
* the subclasses' threading mechanisms. */
struct DenseFDThreadStruct
{
DenseFiniteDifferenceImageFilter *Filter;
TimeStepType TimeStep;
TimeStepType *TimeStepList;
bool *ValidTimeStepList;
};
/** This callback method uses ImageSource::SplitRequestedRegion to acquire an
* output region that it passes to ThreadedApplyUpdate for processing. */
static ITK_THREAD_RETURN_TYPE ApplyUpdateThreaderCallback( void *arg );
/** This callback method uses SplitUpdateContainer to acquire a region
* which it then passes to ThreadedCalculateChange for processing. */
static ITK_THREAD_RETURN_TYPE CalculateChangeThreaderCallback( void *arg );
/** The buffer that holds the updates for an iteration of the algorithm. */
typename UpdateBufferType::Pointer m_UpdateBuffer;
};
}// end namespace itk
// Define instantiation macro for this template.
#define ITK_TEMPLATE_DenseFiniteDifferenceImageFilter(_, EXPORT, x, y) namespace itk { \
_(2(class EXPORT DenseFiniteDifferenceImageFilter< ITK_TEMPLATE_2 x >)) \
namespace Templates { typedef DenseFiniteDifferenceImageFilter< ITK_TEMPLATE_2 x > \
DenseFiniteDifferenceImageFilter##y; } \
}
#if ITK_TEMPLATE_EXPLICIT
# include "Templates/itkDenseFiniteDifferenceImageFilter+-.h"
#endif
#if ITK_TEMPLATE_TXX
# include "itkDenseFiniteDifferenceImageFilter.txx"
#endif
#endif
|