#include <itkVectorNeighborhoodOperatorImageFilter.h>
Inheritance diagram for itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >:
Public Types | |
typedef VectorNeighborhoodOperatorImageFilter | Self |
typedef ImageToImageFilter< TInputImage, TOutputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TInputImage::Pointer | InputImagePointer |
typedef TOutputImage::Pointer | OutputImagePointer |
typedef TOutputImage::PixelType | OutputPixelType |
typedef TOutputImage::InternalPixelType | OutputInternalPixelType |
typedef TInputImage::PixelType | InputPixelType |
typedef TInputImage::InternalPixelType | InputInternalPixelType |
typedef OutputPixelType::ValueType | ScalarValueType |
typedef TInputImage | InputImageType |
typedef TOutputImage | OutputImageType |
typedef ImageBoundaryCondition< OutputImageType > * | ImageBoundaryConditionPointerType |
typedef Superclass::OutputImageRegionType | OutputImageRegionType |
Public Member Functions | |
virtual const char * | GetClassName () const |
itkStaticConstMacro (ImageDimension, unsigned int, TOutputImage::ImageDimension) | |
void | OverrideBoundaryCondition (const ImageBoundaryConditionPointerType i) |
virtual void | GenerateInputRequestedRegion () throw (InvalidRequestedRegionError) |
void | SetOperator (const Neighborhood< ScalarValueType, itkGetStaticConstMacro(ImageDimension)> &p) |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
VectorNeighborhoodOperatorImageFilter () | |
virtual | ~VectorNeighborhoodOperatorImageFilter () |
void | ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, int threadId) |
void | PrintSelf (std::ostream &os, Indent indent) const |
This filter calculates successive inner products between a single NeighborhoodOperator and a NeighborhoodIterator, which is swept across every pixel in an image region. For operators that are symmetric across their axes, the result is a fast convolution with the image region. Apply the mirror()'d operator for non-symmetric NeighborhoodOperators.
This filter assumes that the input and output images have pixels which are itk::Vectors of the same vector dimension. The input NeighbourhoodOperator must have a scalar type that matches the ValueType of vector pixels.
To apply a scalar NeighborhoodOperator to a scalar image use NeighborhoodOperatorImageFilter instead.
Definition at line 56 of file itkVectorNeighborhoodOperatorImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 64 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Typedef for generic boundary condition pointer Definition at line 92 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Extract some information from the image types. Dimensionality of the two images is assumed to be the same. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 74 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Image typedef support Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 87 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Definition at line 79 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Definition at line 78 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 75 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Superclass typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 95 of file itkVectorNeighborhoodOperatorImageFilter.h. Referenced by itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::~VectorNeighborhoodOperatorImageFilter(). |
|
Some convenient typedefs. Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 88 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Definition at line 77 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Definition at line 76 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 63 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Definition at line 80 of file itkVectorNeighborhoodOperatorImageFilter.h. Referenced by itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::SetOperator(). |
|
Standard class typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 61 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 62 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Definition at line 126 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Definition at line 127 of file itkVectorNeighborhoodOperatorImageFilter.h. References itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::OutputImageRegionType. |
|
VectorNeighborhoodOperatorImageFilter needs a larger input requested region than the output requested region. As such, VectorNeighborhoodOperatorImageFilter needs to provide an implementation for GenerateInputRequestedRegion() in order to inform the pipeline execution model.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
|
Run-time type information (and related methods) Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
|
Determine image dimension. |
|
Method for creation through the object factory. Reimplemented from itk::Object.
|
|
Allows a user to override the internal boundary condition. Care should be be taken to ensure that the overriding boundary condition is a persistent object during the time it is referenced. The overriding condition can be of a different type than the default type as long as it is a subclass of ImageBoundaryCondition. Definition at line 113 of file itkVectorNeighborhoodOperatorImageFilter.h. |
|
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 142 of file itkVectorNeighborhoodOperatorImageFilter.h. References HardConnectedComponentImageFilter::PrintSelf(). |
|
Sets the operator that is used to filter the image. Note that the operator is stored as an internal COPY (it is not part of the pipeline). Definition at line 100 of file itkVectorNeighborhoodOperatorImageFilter.h. References itk::VectorNeighborhoodOperatorImageFilter< TInputImage, TOutputImage >::ScalarValueType. |
|
VectorNeighborhoodOperatorImageFilter can be implemented as a multithreaded filter. Therefore, this implementation provides a ThreadedGenerateData() routine which is called for each processing thread. The output image data is allocated automatically by the superclass prior to calling ThreadedGenerateData(). ThreadedGenerateData can only write to the portion of the output image specified by the parameter "outputRegionForThread" Reimplemented from itk::ImageSource< TOutputImage >.
|