ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkAccumulateImageFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > |
Private Member Functions | |
AccumulateImageFilter (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
unsigned int | m_AccumulateDimension |
bool | m_Average |
virtual void | SetAverage (bool _arg) |
virtual bool | GetAverage () const |
virtual void | AverageOn () |
virtual void | AverageOff () |
AccumulateImageFilter () | |
virtual | ~AccumulateImageFilter () |
void | PrintSelf (std::ostream &os, Indent indent) const |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Implements an accumulation of an image along a selected direction.
This class accumulates an image along a dimension and reduce the size of this dimension to 1. The dimension being accumulated is set by AccumulateDimension.
Each pixel is the cumulative sum of the pixels along the collapsed dimension and reduce the size of the accumulated dimension to 1 (only on the accumulated).
The dimensions of the InputImage and the OutputImage must be the same.
This class is parameterized over the type of the input image and the type of the output image.
This filter was contributed by Emiliano Beronich
Definition at line 54 of file itkAccumulateImageFilter.h.
typedef SmartPointer< const Self > itk::AccumulateImageFilter< TInputImage, TOutputImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
Definition at line 61 of file itkAccumulateImageFilter.h.
typedef InputImageType::PixelType itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImagePixelType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 73 of file itkAccumulateImageFilter.h.
typedef InputImageType::Pointer itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImagePointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 71 of file itkAccumulateImageFilter.h.
typedef InputImageType::RegionType itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImageRegionType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 72 of file itkAccumulateImageFilter.h.
typedef TInputImage itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 67 of file itkAccumulateImageFilter.h.
typedef OutputImageType::PixelType itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImagePixelType |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 78 of file itkAccumulateImageFilter.h.
typedef OutputImageType::Pointer itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImagePointer |
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 76 of file itkAccumulateImageFilter.h.
typedef OutputImageType::RegionType itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImageRegionType |
Superclass typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 77 of file itkAccumulateImageFilter.h.
typedef TOutputImage itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 75 of file itkAccumulateImageFilter.h.
typedef SmartPointer< Self > itk::AccumulateImageFilter< TInputImage, TOutputImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
Definition at line 60 of file itkAccumulateImageFilter.h.
typedef AccumulateImageFilter itk::AccumulateImageFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
Definition at line 58 of file itkAccumulateImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::AccumulateImageFilter< TInputImage, TOutputImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
Definition at line 59 of file itkAccumulateImageFilter.h.
|
protected |
Perform a division by the size of the accumulated dimension after the accumulation is done. If true, the output image is the average of the accumulated dimension, if false the output is the sum of the pixels along the selected direction. The default value is false.
|
inlineprotectedvirtual |
Perform a division by the size of the accumulated dimension after the accumulation is done. If true, the output image is the average of the accumulated dimension, if false the output is the sum of the pixels along the selected direction. The default value is false.
Definition at line 116 of file itkAccumulateImageFilter.h.
|
private |
|
virtual |
Perform a division by the size of the accumulated dimension after the accumulation is done. If true, the output image is the average of the accumulated dimension, if false the output is the sum of the pixels along the selected direction. The default value is false.
|
virtual |
Perform a division by the size of the accumulated dimension after the accumulation is done. If true, the output image is the average of the accumulated dimension, if false the output is the sum of the pixels along the selected direction. The default value is false.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
|
protectedvirtual |
This method implements the actual accumulation of the image.
Reimplemented from itk::ImageSource< TOutputImage >.
|
protectedvirtual |
Apply changes to the input image requested region.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
protectedvirtual |
Apply changes to the output image information.
Reimplemented from itk::ProcessObject.
|
virtual |
End concept checking Set the direction in which to accumulate the data. It must be set before the update of the filter. Defaults to the last dimension.
|
virtual |
Perform a division by the size of the accumulated dimension after the accumulation is done. If true, the output image is the average of the accumulated dimension, if false the output is the sum of the pixels along the selected direction. The default value is false.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
|
static |
Method for creation through the object factory.
Reimplemented from itk::Object.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
|
private |
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.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
|
protectedvirtual |
Perform a division by the size of the accumulated dimension after the accumulation is done. If true, the output image is the average of the accumulated dimension, if false the output is the sum of the pixels along the selected direction. The default value is false.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
|
virtual |
End concept checking Set the direction in which to accumulate the data. It must be set before the update of the filter. Defaults to the last dimension.
|
virtual |
Perform a division by the size of the accumulated dimension after the accumulation is done. If true, the output image is the average of the accumulated dimension, if false the output is the sum of the pixels along the selected direction. The default value is false.
itk::AccumulateImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::SameDimensionOrMinusOne< itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | ) |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. Begin concept checking This class requires ImageDimensionCheck in the form of ( Concept::SameDimensionOrMinusOne< itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > )
|
static |
ImageDimension enumeration
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 82 of file itkAccumulateImageFilter.h.
|
private |
Definition at line 136 of file itkAccumulateImageFilter.h.
|
private |
Definition at line 137 of file itkAccumulateImageFilter.h.
|
static |
ImageDimension enumeration
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 84 of file itkAccumulateImageFilter.h.