ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkFiniteDifferenceSparseImageFunction.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkFiniteDifferenceSparseImageFunction_h
19 #define itkFiniteDifferenceSparseImageFunction_h
20 
22 
23 namespace itk
24 {
46 template< typename TSparseImageType >
47 class ITK_TEMPLATE_EXPORT FiniteDifferenceSparseImageFunction:
48  public FiniteDifferenceFunction< TSparseImageType >
49 {
50 public:
51 
57 
60 
62  itkStaticConstMacro(ImageDimension, unsigned int, Superclass::ImageDimension);
63 
65  typedef typename Superclass::PixelType PixelType;
66  typedef typename Superclass::TimeStepType TimeStepType;
70  typedef typename Superclass::ImageType SparseImageType;
71 
74 
76  typedef typename SparseImageType::NodeType NodeType;
77 
79  typedef typename NodeType::NodeDataType NodeDataType;
80 
86  void *,
87  const FloatOffsetType &) ITK_OVERRIDE
88  {
89  return static_cast< PixelType >( ITK_NULLPTR );
90  }
91 
94  virtual NodeDataType
95  ComputeSparseUpdate( NeighborhoodType & neighborhood,
96  void *globalData,
97  const FloatOffsetType & offset = FloatOffsetType(0.0) )
98  const = 0;
99 
109  virtual void PrecomputeSparseUpdate(NeighborhoodType &) const {}
110 
111 protected:
114  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
115 
116 private:
117  ITK_DISALLOW_COPY_AND_ASSIGN(FiniteDifferenceSparseImageFunction);
118 };
119 } // end namespace itk
120 
121 #ifndef ITK_MANUAL_INSTANTIATION
122 #include "itkFiniteDifferenceSparseImageFunction.hxx"
123 #endif
124 
125 #endif
ConstNeighborhoodIterator< TSparseImageType >::RadiusType RadiusType
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
virtual PixelType ComputeUpdate(const NeighborhoodType &, void *, const FloatOffsetType &) override
virtual void PrecomputeSparseUpdate(NeighborhoodType &) const
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
This is the base class for function classes that can be used with filters derived from FiniteDifferen...
Control indentation during Print() invocation.
Definition: itkIndent.h:49
FiniteDifferenceFunction< TSparseImageType > Superclass