ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkNormalVectorFunctionBase.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 itkNormalVectorFunctionBase_h
19 #define itkNormalVectorFunctionBase_h
20 
22 
23 namespace itk
24 {
51 template< typename TSparseImageType >
52 class ITK_TEMPLATE_EXPORT NormalVectorFunctionBase:
53  public FiniteDifferenceSparseImageFunction< TSparseImageType >
54 {
55 public:
56  ITK_DISALLOW_COPY_AND_ASSIGN(NormalVectorFunctionBase);
57 
63 
66 
68  static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
69 
75  using IndexType = typename Superclass::IndexType;
76  using SparseImageType = typename Superclass::SparseImageType;
77 
79  using NodeType = typename SparseImageType::NodeType;
80 
82  using NodeValueType = typename NodeType::NodeValueType;
83 
85  using NormalVectorType = typename NodeType::NodeDataType;
86 
88  void * GetGlobalDataPointer() const override { return nullptr; }
89  void ReleaseGlobalDataPointer(void *) const override {}
91 
93  TimeStepType ComputeGlobalTimeStep(void *) const override
94  { return m_TimeStep; }
95 
97  void SetTimeStep(const TimeStepType & ts)
98  { m_TimeStep = ts; }
99 
102  { return m_TimeStep; }
103 
104 protected:
106  ~NormalVectorFunctionBase() override = default;
107  void PrintSelf(std::ostream & os, Indent indent) const override;
108 
109 private:
112 
113 };
114 } // end namespace itk
115 
116 #ifndef ITK_MANUAL_INSTANTIATION
117 #include "itkNormalVectorFunctionBase.hxx"
118 #endif
119 
120 #endif
Light weight base class for most itk classes.
void SetTimeStep(const TimeStepType &ts)
This class defines the common functionality for Sparse Image neighborhoods of unit vectors...
typename NodeType::NodeDataType NormalVectorType
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
void * GetGlobalDataPointer() const override
typename ConstNeighborhoodIterator< TSparseImageType >::RadiusType RadiusType
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...
void ReleaseGlobalDataPointer(void *) const override
TimeStepType ComputeGlobalTimeStep(void *) const override
Control indentation during Print() invocation.
Definition: itkIndent.h:49
typename NodeType::NodeValueType NodeValueType