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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkImageToImageFilter.h
Language: C++
Date: $Date$
Version: $Revision$
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 __itkImageToImageFilter_h
#define __itkImageToImageFilter_h
#include "itkImage.h"
#include "itkImageSource.h"
#include "itkConceptChecking.h"
#include "itkImageToImageFilterDetail.h"
namespace itk
{
/** \class ImageToImageFilter
* \brief Base class for filters that take an image as input and produce an image as output.
*
* ImageToImageFilter is the base class for all process objects that output
* image data and require image data as input. Specifically, this class
* defines the SetInput() method for defining the input to a filter.
*
* This class provides the infrastructure for supporting multithreaded
* processing of images. If a filter provides an implementation of
* GenerateData(), the image processing will run in a single thread and the
* implementation is responsible for allocating its output data. If a filter
* provides an implementation of ThreadedGenerateData() instead, the image
* will be divided into a number of pieces, a number of threads will be
* spawned, and ThreadedGenerateData() will be called in each thread. Here,
* the output memory will be allocated by this superclass prior to calling
* ThreadedGenerateData().
*
* ImageToImageFilter provides an implementation of
* GenerateInputRequestedRegion(). The base assumption to this point in the
* hierarchy is that a process object would ask for the largest possible
* region on input in order to produce any output. Imaging filters,
* however, can usually answer this question more precisely. The default
* implementation of GenerateInputRequestedRegion() in this class is to
* request an input that matches the size of the requested output. If a
* filter requires more input (say a filter that uses neighborhood
* information) or less input (for instance a magnify filter), then these
* filters will have to provide another implmentation of this method. By
* convention, such implementations should call the Superclass' method
* first.
*
* \ingroup ImageFilters
*/
template <class TInputImage, class TOutputImage>
class ITK_EXPORT ImageToImageFilter : public ImageSource<TOutputImage>
{
public:
/** Standard class typedefs. */
typedef ImageToImageFilter Self;
typedef ImageSource<TOutputImage> Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Run-time type information (and related methods). */
itkTypeMacro(ImageToImageFilter,ImageSource);
/** Superclass typedefs. */
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);
/** Set/Get the image input of this process object. */
virtual void SetInput( const InputImageType *image);
virtual void SetInput( unsigned int, const TInputImage * image);
const InputImageType * GetInput(void);
const InputImageType * GetInput(unsigned int idx);
/** Push/Pop the input of this process object. These methods allow a
* filter to model its input vector as a queue or stack. These
* routines may not be appropriate for all filters, especially
* filters with different types of inputs. These routines follow
* the semantics of STL.
*
* The routines are useful for applications that need to process
* "rolling" sets of images. For instance, if an application has 10
* images and they need to run a filter on images 1, 2, 3, 4, then
* run the filter on images 2, 3, 4, 5, then run the filter on
* images 3, 4, 5, 6, the application can accomplish this by popping
* an input off the front of the input list and push a new image
* onto the back of input list. Again, this only makes sense for
* filters that single type of input.
*
* Other uses are also possible. For a single input filter, pushing
* and popping inputs allow the application to temporarily replace
* an input to a filter.
*/
virtual void PushBackInput( const InputImageType *image);
virtual void PopBackInput();
virtual void PushFrontInput( const InputImageType *image);
virtual void PopFrontInput();
protected:
ImageToImageFilter();
~ImageToImageFilter();
virtual void PrintSelf(std::ostream& os, Indent indent) const;
/** What is the input requested region that is required to produce
* the output requested region? The base assumption for image
* processing filters is that the input requested region can be set
* to match the output requested region. If a filter requires more
* input (for instance a filter that uses neighborhoods needs more
* input than output to avoid introducing artificial boundary
* conditions) or less input (for instance a magnify filter) will
* have to override this method. In doing so, it should call its
* superclass' implementation as its first step. Note that imaging
* filters operate differently than the classes to this point in the
* class hierachy. Up till now, the base assumption has been that
* the largest possible region will be requested of the input.
*
* This implementation of GenerateInputRequestedRegion() only
* processes the inputs that are a subclass of the
* ImageBase<InputImageDimension>. If an input is another type of
* DataObject (including an Image of a different dimension), they
* are skipped by this method. The subclasses of ImageToImageFilter
* are responsible for providing an implementation of
* GenerateInputRequestedRegion() when there are multiple inputs of
* different types.
*
* \sa ProcessObject::GenerateInputRequestedRegion(),
* ImageSource::GenerateInputRequestedRegion() */
virtual void GenerateInputRequestedRegion();
/** Typedef for the region copier function object that converts an
* input region to an output region. */
typedef ImageToImageFilterDetail::ImageRegionCopier<itkGetStaticConstMacro(OutputImageDimension),
itkGetStaticConstMacro(InputImageDimension)> InputToOutputRegionCopierType;
/** Typedef for the region copier function object that converts an
* output region to an input region. */
typedef ImageToImageFilterDetail::ImageRegionCopier<itkGetStaticConstMacro(InputImageDimension),
itkGetStaticConstMacro(OutputImageDimension)> OutputToInputRegionCopierType;
/** This function calls the actual region copier to do the mapping
* from output image space to input image space. It uses a Function
* object used for dispatching to various routines to copy an output
* region (start index and size) to an input region. For most
* filters, this is a trivial copy because most filters require the
* input dimension to match the output dimension. However, some
* filters like itk::ExtractImageFilter can support output images of
* a lower dimension that the input.
*
* This function object can be used by GenerateOutputInformation()
* to copy the input LargestPossibleRegion to the output
* LargestPossibleRegion and can also be used in GenerateData or
* ThreadedGenerateData() where a filter may need to map an
* output region to an input region.
*
* The default copier uses a "dispatch pattern" to call one of three
* overloaded functions depending on whether the input and output
* images are the same dimension, the input is a higher dimension
* that the output, or the input is of a lower dimension than the
* output. The use of an overloaded function is required for proper
* compilation of the various cases.
*
* For the latter two cases, trivial implementations are used. If
* the input image is a higher dimension than the output, the output
* region information is copied into the first portion of the input
* region and the rest of the input region is set to zero. If the
* input region is a lower dimension than the output, the first
* portion of the output region is copied to the input region.
*
* If a filter needs a different default behavior, it can override
* this method. The ExtractImageFilter overrides this function
* object so that if the input image is a higher dimension than the
* output image, the filter can control "where" in the input image
* the output subimage is extracted (as opposed to mapping to first
* few dimensions of the input). */
virtual void CallCopyOutputRegionToInputRegion(InputImageRegionType &destRegion,
const OutputImageRegionType &srcRegion);
/** This function calls the actual region copier to do the mapping
* from input image space to output image space. It uses a Function
* object used for dispatching to various routines to copy an input
* region (start index and size) to an output region. For most
* filters, this is a trivial copy because most filters require the
* input dimension to match the output dimension. However, some
* filters like itk::UnaryFunctorImageFilter can support output
* images of a higher dimension that the input.
*
* This function object is used by the default implementation of
* GenerateOutputInformation(). It can also be used in routines
* like ThreadedGenerateData() where a filter may need to map an
* input region to an output region.
*
* The default copier uses a "dispatch pattern" to call one of three
* overloaded functions depending on whether the input and output
* images are the same dimension, the input is a higher dimension
* that the output, or the input is of a lower dimension than the
* output. The use of an overloaded function is required for proper
* compilation of the various cases.
*
* For the latter two cases, trivial implementations are used. If
* the input image is a higher dimension than the output, the first
* portion of the input region is copied to the output region. If
* the input region is a lower dimension than the output, the input
* region information is copied into the first portion of the output
* region and the rest of the output region is set to zero.
*
* If a filter needs a different default behavior, it can override
* this method. */
virtual void CallCopyInputRegionToOutputRegion(OutputImageRegionType &destRegion,
const InputImageRegionType &srcRegion);
/**
* PushBackInput(), PushFronInput() in the public section force the
* input to be the type expected by an ImageToImageFilter. However,
* these methods end of "hiding" the versions from the superclass
* (ProcessObject) whose arguments are DataObjects. Here, we re-expose
* the versions from ProcessObject to avoid warnings about hiding
* methods from the superclass.
*/
void PushBackInput(const DataObject *input)
{ Superclass::PushBackInput(input); }
void PushFrontInput(const DataObject *input)
{ Superclass::PushFrontInput(input); }
private:
ImageToImageFilter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
};
} // end namespace itk
// Define instantiation macro for this template.
#define ITK_TEMPLATE_ImageToImageFilter(_, EXPORT, x, y) namespace itk { \
_(2(class EXPORT ImageToImageFilter< ITK_TEMPLATE_2 x >)) \
namespace Templates { typedef ImageToImageFilter< ITK_TEMPLATE_2 x > ImageToImageFilter##y; } \
}
#if ITK_TEMPLATE_EXPLICIT
# include "Templates/itkImageToImageFilter+-.h"
#endif
#if ITK_TEMPLATE_TXX
# include "itkImageToImageFilter.txx"
#endif
#endif
|