#include <itkZeroFluxNeumannBoundaryCondition.h>
Inheritance diagram for itk::ZeroFluxNeumannBoundaryCondition< TImage >:
Public Types | |
typedef ZeroFluxNeumannBoundaryCondition | Self |
typedef ImageBoundaryCondition< TImage > | Superclass |
typedef Superclass::PixelType | PixelType |
typedef Superclass::PixelPointerType | PixelPointerType |
typedef Superclass::IndexType | IndexType |
typedef Superclass::OffsetType | OffsetType |
typedef Superclass::NeighborhoodType | NeighborhoodType |
typedef Superclass::NeighborhoodAccessorFunctorType | NeighborhoodAccessorFunctorType |
Public Member Functions | |
itkStaticConstMacro (ImageDimension, unsigned int, Superclass::ImageDimension) | |
ZeroFluxNeumannBoundaryCondition () | |
virtual PixelType | operator() (const OffsetType &point_index, const OffsetType &boundary_offset, const NeighborhoodType *data) const |
virtual PixelType | operator() (const OffsetType &point_index, const OffsetType &boundary_offset, const NeighborhoodType *data, const NeighborhoodAccessorFunctorType &neighborhoodAccessorFunctor) const |
For example, invoking this function object on a 7x5 iterator that masks a region at an image corner (iterator is centered on the 2):
* * * * * * * * * * * * * * * * 1 2 3 4 5 (where * denotes pixels that lie * * 3 3 5 5 6 outside of the image boundary) * * 4 4 6 7 8
returns the following neighborhood of values:
1 1 1 2 3 4 5 1 1 1 2 3 4 5 1 1 1 2 3 4 5 3 3 3 3 5 5 6 (note the corner values) 4 4 4 4 6 7 8
The input to this function object is a neighborhood iterator. This boundary condition object is designed to be given as a template argument to a NeighborhoodIterator or any of the NeighborhoodIterator subclasses.
Definition at line 58 of file itkZeroFluxNeumannBoundaryCondition.h.
|
Reimplemented from itk::ImageBoundaryCondition< TImage >. Definition at line 69 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Functor used to access pixels from a neighborhood of pixel pointers Reimplemented from itk::ImageBoundaryCondition< TImage >. Definition at line 74 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Type of the data container passed to this function object. Reimplemented from itk::ImageBoundaryCondition< TImage >. Definition at line 71 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Reimplemented from itk::ImageBoundaryCondition< TImage >. Definition at line 70 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Reimplemented from itk::ImageBoundaryCondition< TImage >. Definition at line 68 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Extract information from the image type. Reimplemented from itk::ImageBoundaryCondition< TImage >. Definition at line 67 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Standard class typedefs. Reimplemented from itk::ImageBoundaryCondition< TImage >. Definition at line 63 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Definition at line 64 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Default constructor. Definition at line 80 of file itkZeroFluxNeumannBoundaryCondition.h. |
|
Extract information from the image type. |
|
Computes and returns the appropriate pixel value from neighborhood iterator data, using the functor. Implements itk::ImageBoundaryCondition< TImage >. |
|
Computes and returns a neighborhood of appropriate values from neighborhood iterator data.. Implements itk::ImageBoundaryCondition< TImage >. |