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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkInPlaceImageFilter.h,v $
Language: C++
Date: $Date: 2007-01-30 20:56:08 $
Version: $Revision: 1.5 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.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 __itkInPlaceImageFilter_h
#define __itkInPlaceImageFilter_h
#include "itkImageToImageFilter.h"
namespace itk
{
/** \class InPlaceImageFilter
* \brief Base class for filters that take an image as input and overwrite that image as the output
*
* InPlaceImageFilter is the base class for all process objects whose
* output image data is constructed by overwriting the input image
* data. In other words, the output bulk data is the same block of
* memory as the input bulk data. This filter provides the mechanisms
* for in place image processing while maintaining general pipeline
* mechanics. InPlaceImageFilters use less memory than standard
* ImageToImageFilters because the input buffer is reused as the
* output buffer. However, this benefit does not come without a cost.
* Since the filter overwrites its input, the ownership of the bulk
* data is transitioned from the input data object to the output data
* object. When a data object has multiple consumers with one
* of the consumers being an in place filter, the in place filter
* effectively destroys the bulk data for the data object. Upstream
* filters will then have to re-execute to regenerate the data object's
* bulk data for the remaining consumers.
*
* Since an InPlaceImageFilter reuses the input bulk data memory for the
* output bulk data memory, the input image type must match the output
* image type. If the input and output image types are not identical,
* the filter reverts to a traditional ImageToImageFilter behaviour
* where an output image is allocated. In place operation can also be
* controlled (when the input and output image type match) via the
* methods InPlaceOn() and InPlaceOff().
*
* Subclasses of InPlaceImageFilter must take extra care in how they
* manage memory using (and perhaps overriding) the implementations of
* ReleaseInputs() and AllocateOutputs() provided here.
*
* \ingroup ImageFilters
*/
template <class TInputImage, class TOutputImage=TInputImage>
class ITK_EXPORT InPlaceImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
{
public:
/** Standard class typedefs. */
typedef InPlaceImageFilter Self;
typedef ImageToImageFilter<TInputImage, TOutputImage> Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Run-time type information (and related methods). */
itkTypeMacro(InPlaceImageFilter,ImageToImageFilter);
/** Superclass typedefs. */
typedef typename Superclass::OutputImageType OutputImageType;
typedef typename Superclass::OutputImagePointer OutputImagePointer;
typedef typename Superclass::OutputImageRegionType OutputImageRegionType;
typedef typename Superclass::OutputImagePixelType OutputImagePixelType;
/** Some convenient typedefs. */
typedef TInputImage InputImageType;
typedef typename InputImageType::Pointer InputImagePointer;
typedef typename InputImageType::ConstPointer InputImageConstPointer;
typedef typename InputImageType::RegionType InputImageRegionType;
typedef typename InputImageType::PixelType InputImagePixelType;
/** ImageDimension constants */
itkStaticConstMacro(InputImageDimension, unsigned int,
TInputImage::ImageDimension);
itkStaticConstMacro(OutputImageDimension, unsigned int,
TOutputImage::ImageDimension);
/** In place operation can be turned on and off. This only has an
* effect when the input and output image type match. */
itkSetMacro(InPlace, bool);
itkGetMacro(InPlace, bool);
itkBooleanMacro(InPlace);
/** Can the filter run in place? To do so, the filter's first input
* and output must have the same dimension and pixel type. This
* method can be used in conjunction with the InPlace ivar to
* determine whether a particular use of the filter is really
* running in place. Some filters may be able to optimize their
* operation if the InPlace is true and CanRunInPlace is true. */
bool CanRunInPlace() const
{
return (typeid(TInputImage) == typeid(TOutputImage));
};
protected:
InPlaceImageFilter();
~InPlaceImageFilter();
virtual void PrintSelf(std::ostream& os, Indent indent) const;
/** The GenerateData method normally allocates the buffers for all
* of the outputs of a filter. Since InPlaceImageFilter's can use an
* overwritten version of the input for its output, the output
* buffer should not be allocated. When possible, we graft the input
* to the filter to the output. If an InPlaceFilter has multiple
* outputs, then it would need to override this method to graft one
* of its outputs and allocate the remaining. If a filter is
* threaded (i.e. it provides an implementation of
* ThreadedGenerateData()), this method is called automatically. If
* an InPlaceFilter is not threaded (i.e. it provides an
* implementation of GenerateData()), then this method (or
* equivalent) must be called in GenerateData(). */
virtual void AllocateOutputs();
/** InPlaceImageFilter may transfer ownership of the input bulk data
* to the output object. Once the output object owns the bulk data
* (done in AllocateOutputs()), the input object must release its
* hold on the bulk data. ProcessObject::ReleaseInputs() only
* releases the input bulk data when the user has set the
* ReleaseDataFlag. InPlaceImageFilter::ReleaseInputs() also
* releases the input that it has overwritten.
*
* \sa ProcessObject::ReleaseInputs() */
virtual void ReleaseInputs();
private:
InPlaceImageFilter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
bool m_InPlace;
};
} // end namespace itk
// Define instantiation macro for this template.
#define ITK_TEMPLATE_InPlaceImageFilter(_, EXPORT, x, y) namespace itk { \
_(2(class EXPORT InPlaceImageFilter< ITK_TEMPLATE_2 x >)) \
namespace Templates { typedef InPlaceImageFilter< ITK_TEMPLATE_2 x > InPlaceImageFilter##y; } \
}
#if ITK_TEMPLATE_EXPLICIT
# include "Templates/itkInPlaceImageFilter+-.h"
#endif
#if ITK_TEMPLATE_TXX
# include "itkInPlaceImageFilter.txx"
#endif
#endif
|