#include <itkNeighborhoodOperatorImageFilter.h>
Inheritance diagram for itk::NeighborhoodOperatorImageFilter< TInputImage, TOutputImage >:
Public Types | |
typedef NeighborhoodOperatorImageFilter | Self |
typedef ImageToImageFilter< TInputImage, TOutputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TOutputImage::PixelType | OutputPixelType |
typedef TOutputImage::InternalPixelType | OutputInternalPixelType |
typedef TInputImage::PixelType | InputPixelType |
typedef TInputImage::InternalPixelType | InputInternalPixelType |
typedef TInputImage | InputImageType |
typedef TOutputImage | OutputImageType |
typedef InputImageType::Pointer | InputImagePointer |
typedef ImageBoundaryCondition< OutputImageType > * | ImageBoundaryConditionPointerType |
typedef Superclass::OutputImageRegionType | OutputImageRegionType |
typedef Neighborhood< OutputPixelType, itkGetStaticConstMacro(ImageDimension) | OutputNeighborhoodType ) |
typedef Neighborhood< InputPixelType, itkGetStaticConstMacro(ImageDimension) | InputNeighborhoodType ) |
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 OutputNeighborhoodType &p) |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
NeighborhoodOperatorImageFilter () | |
virtual | ~NeighborhoodOperatorImageFilter () |
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.
Definition at line 45 of file itkNeighborhoodOperatorImageFilter.h.
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 53 of file itkNeighborhoodOperatorImageFilter.h. |
|
Typedef for generic boundary condition pointer. Definition at line 80 of file itkNeighborhoodOperatorImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 76 of file itkNeighborhoodOperatorImageFilter.h. |
|
Image typedef support. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 74 of file itkNeighborhoodOperatorImageFilter.h. |
|
Definition at line 66 of file itkNeighborhoodOperatorImageFilter.h. |
|
Neighborhood types Definition at line 87 of file itkNeighborhoodOperatorImageFilter.h. |
|
Definition at line 65 of file itkNeighborhoodOperatorImageFilter.h. |
|
Superclass typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 83 of file itkNeighborhoodOperatorImageFilter.h. |
|
Some convenient typedefs. Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 75 of file itkNeighborhoodOperatorImageFilter.h. |
|
Definition at line 64 of file itkNeighborhoodOperatorImageFilter.h. |
|
Neighborhood types Definition at line 86 of file itkNeighborhoodOperatorImageFilter.h. |
|
Extract some information from the image types. Dimensionality of the two images is assumed to be the same. Definition at line 63 of file itkNeighborhoodOperatorImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 52 of file itkNeighborhoodOperatorImageFilter.h. |
|
Standard "Self" & Superclass typedef. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 50 of file itkNeighborhoodOperatorImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 51 of file itkNeighborhoodOperatorImageFilter.h. |
|
Definition at line 118 of file itkNeighborhoodOperatorImageFilter.h. |
|
Definition at line 119 of file itkNeighborhoodOperatorImageFilter.h. |
|
NeighborhoodOperatorImageFilter needs a larger input requested region than the output requested region. As such, NeighborhoodOperatorImageFilter 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 >.
|
|
Extract some information from the image types. Dimensionality of the two images is assumed to be the same. |
|
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 105 of file itkNeighborhoodOperatorImageFilter.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 136 of file itkNeighborhoodOperatorImageFilter.h. |
|
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 93 of file itkNeighborhoodOperatorImageFilter.h. |
|
NeighborhoodOperatorImageFilter 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 >.
|