ITK
5.2.0
Insight Toolkit
|
#include <itkBackwardDifferenceOperator.h>
Public Types | |
using | PixelType = typename Superclass::PixelType |
using | Self = BackwardDifferenceOperator |
using | Superclass = NeighborhoodOperator< TPixel, TDimension, TAllocator > |
Public Types inherited from itk::NeighborhoodOperator< TPixel, TDimension, TAllocator > | |
using | PixelType = TPixel |
using | Self = NeighborhoodOperator |
using | SizeType = typename Superclass::SizeType |
using | SliceIteratorType = SliceIterator< TPixel, Self > |
using | Superclass = Neighborhood< TPixel, VDimension, TAllocator > |
using | PixelRealType = typename NumericTraits< TPixel >::RealType |
Public Types inherited from itk::Neighborhood< TPixel, VDimension, TAllocator > | |
using | AllocatorType = TAllocator |
using | ConstIterator = typename AllocatorType::const_iterator |
using | DimensionValueType = unsigned int |
using | Iterator = typename AllocatorType::iterator |
using | NeighborIndexType = SizeValueType |
using | OffsetType = Offset< VDimension > |
using | PixelType = TPixel |
using | RadiusType = ::itk::Size< VDimension > |
using | Self = Neighborhood |
using | SizeType = ::itk::Size< VDimension > |
using | SizeValueType = typename SizeType::SizeValueType |
using | SliceIteratorType = SliceIterator< TPixel, Self > |
Protected Types | |
using | CoefficientVector = typename Superclass::CoefficientVector |
Protected Types inherited from itk::NeighborhoodOperator< TPixel, TDimension, TAllocator > | |
using | CoefficientVector = std::vector< PixelRealType > |
Protected Member Functions | |
CoefficientVector | GenerateCoefficients () override |
void | Fill (const CoefficientVector &coeff) override |
Protected Member Functions inherited from itk::NeighborhoodOperator< TPixel, TDimension, TAllocator > | |
virtual void | Fill (const CoefficientVector &)=0 |
virtual void | FillCenteredDirectional (const CoefficientVector &) |
void | InitializeToZero () |
Protected Member Functions inherited from itk::Neighborhood< TPixel, VDimension, TAllocator > | |
void | SetSize () |
virtual void | Allocate (NeighborIndexType i) |
virtual void | ComputeNeighborhoodStrideTable () |
virtual void | ComputeNeighborhoodOffsetTable () |
Operator whose inner product with a neighborhood returns a "half" derivative at the center of the neighborhood.
BackwardDifferenceOperator uses backward differences i.e. to calculate a "half" derivative useful, among other things, in solving differential equations. It is a directional NeighborhoodOperator that should be applied to a Neighborhood using the inner product.
Definition at line 48 of file itkBackwardDifferenceOperator.h.
|
protected |
Necessary to work around a compiler bug in VC++.
Definition at line 61 of file itkBackwardDifferenceOperator.h.
using itk::BackwardDifferenceOperator< TPixel, TDimension, TAllocator >::PixelType = typename Superclass::PixelType |
From Superclass
Definition at line 57 of file itkBackwardDifferenceOperator.h.
using itk::BackwardDifferenceOperator< TPixel, TDimension, TAllocator >::Self = BackwardDifferenceOperator |
Standard class type aliases.
Definition at line 53 of file itkBackwardDifferenceOperator.h.
using itk::BackwardDifferenceOperator< TPixel, TDimension, TAllocator >::Superclass = NeighborhoodOperator<TPixel, TDimension, TAllocator> |
Definition at line 54 of file itkBackwardDifferenceOperator.h.
|
inlineoverrideprotected |
Arranges coefficients spatially in the memory buffer.
Definition at line 69 of file itkBackwardDifferenceOperator.h.
|
overrideprotectedvirtual |
Calculates operator coefficients.
Implements itk::NeighborhoodOperator< TPixel, TDimension, TAllocator >.