ITK
5.2.0
Insight Toolkit
|
#include <itkAccumulateImageFilter.h>
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TOutputImage |
using | Pointer = SmartPointer< Self > |
using | Self = AccumulateImageFilter |
using | Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | OutputImagePixelType = typename Superclass::OutputImagePixelType |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | Pointer = SmartPointer< Self > |
using | Self = ImageToImageFilter |
using | Superclass = ImageSource< TOutputImage > |
Public Types inherited from itk::ImageSource< TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = Superclass::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArraySizeType = Superclass::DataObjectPointerArraySizeType |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TOutputImage |
using | Pointer = SmartPointer< Self > |
using | Self = ImageSource |
using | Superclass = ProcessObject |
Public Types inherited from itk::ProcessObject | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = DataObject::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArray = std::vector< DataObjectPointer > |
using | DataObjectPointerArraySizeType = DataObjectPointerArray::size_type |
using | MultiThreaderType = MultiThreaderBase |
using | NameArray = std::vector< DataObjectIdentifierType > |
using | Pointer = SmartPointer< Self > |
using | Self = ProcessObject |
using | Superclass = Object |
Public Types inherited from itk::Object | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = Object |
using | Superclass = LightObject |
Public Types inherited from itk::LightObject | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = LightObject |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static void | SetGlobalDefaultDirectionTolerance (double) |
static double | GetGlobalDefaultDirectionTolerance () |
static void | SetGlobalDefaultCoordinateTolerance (double) |
static double | GetGlobalDefaultCoordinateTolerance () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
unsigned int | m_AccumulateDimension |
bool | m_Average |
virtual unsigned int | GetAccumulateDimension () const |
virtual void | SetAccumulateDimension (unsigned int _arg) |
virtual void | SetAverage (bool _arg) |
virtual bool | GetAverage () const |
virtual void | AverageOn () |
virtual void | AverageOff () |
AccumulateImageFilter () | |
~AccumulateImageFilter () override=default | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
void | GenerateOutputInformation () override |
void | GenerateInputRequestedRegion () override |
void | GenerateData () override |
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.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 63 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImagePixelType = typename InputImageType::PixelType |
Definition at line 75 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImagePointer = typename InputImageType::Pointer |
Definition at line 73 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImageRegionType = typename InputImageType::RegionType |
Definition at line 74 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Some convenient type alias.
Definition at line 72 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImagePixelType = typename OutputImageType::PixelType |
Definition at line 80 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImagePointer = typename OutputImageType::Pointer |
Definition at line 78 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImageRegionType = typename OutputImageType::RegionType |
Definition at line 79 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 77 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 62 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::Self = AccumulateImageFilter |
Standard class type aliases.
Definition at line 60 of file itkAccumulateImageFilter.h.
using itk::AccumulateImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<TInputImage, TOutputImage> |
Definition at line 61 of file itkAccumulateImageFilter.h.
|
protected |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. Set the direction in which to accumulate the data. It must be set before the update of the filter. Defaults to the last dimension.
|
overrideprotecteddefault |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. 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 |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. 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 |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. 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 |
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 >.
|
overrideprotectedvirtual |
This method implements the actual accumulation of the image.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overrideprotectedvirtual |
Apply changes to the input image requested region.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
overrideprotectedvirtual |
Apply changes to the output image information.
Reimplemented from itk::ProcessObject.
|
virtual |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. 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 |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. 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 |
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.
|
overrideprotectedvirtual |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. Set the direction in which to accumulate the data. It must be set before the update of the filter. Defaults to the last dimension.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::GetAverageSliceImageFilter< TInputImage, TOutputImage >.
|
virtual |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. 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.
|
staticconstexpr |
ImageDimension enumeration
Definition at line 83 of file itkAccumulateImageFilter.h.
|
private |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. Set the direction in which to accumulate the data. It must be set before the update of the filter. Defaults to the last dimension.
Definition at line 133 of file itkAccumulateImageFilter.h.
|
private |
Input and output images must be the same dimension, or the output's dimension must be one less than that of the input. Set the direction in which to accumulate the data. It must be set before the update of the filter. Defaults to the last dimension.
Definition at line 134 of file itkAccumulateImageFilter.h.
|
staticconstexpr |
Definition at line 84 of file itkAccumulateImageFilter.h.