ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFiniteDifferenceFunction.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkFiniteDifferenceFunction_h
19#define itkFiniteDifferenceFunction_h
20
21#include "itkLightObject.h"
23#include "itkVector.h"
24
25namespace itk
26{
65template <typename TImageType>
66class ITK_TEMPLATE_EXPORT FiniteDifferenceFunction : public LightObject
67{
68public:
69 ITK_DISALLOW_COPY_AND_MOVE(FiniteDifferenceFunction);
76
78 itkOverrideGetNameOfClassMacro(FiniteDifferenceFunction);
79
81 using ImageType = TImageType;
82 using PixelType = typename ImageType::PixelType;
83 using PixelRealType = double;
86 static constexpr unsigned int ImageDimension = ImageType::ImageDimension;
89 using TimeStepType = double;
94
97
101
105
109
119 virtual void
122
136 virtual PixelType
137 ComputeUpdate(const NeighborhoodType & neighborhood,
138 void * globalData,
139 const FloatOffsetType & offset = FloatOffsetType(0.0)) = 0;
140
141
144 void
146
149 const RadiusType &
150 GetRadius() const;
151
155 void
157
159 void
161
167
174 virtual TimeStepType
175 ComputeGlobalTimeStep(void * GlobalData) const = 0;
176
184 virtual void *
186
192 virtual void
193 ReleaseGlobalDataPointer(void * GlobalData) const = 0;
194
195protected:
197 ~FiniteDifferenceFunction() override = default;
198
199 void
200 PrintSelf(std::ostream & os, Indent indent) const override;
201
204};
205} // end namespace itk
206
207#ifndef ITK_MANUAL_INSTANTIATION
208# include "itkFiniteDifferenceFunction.hxx"
209#endif
210
211#endif
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
itk::Size< VDimension > RadiusType
ConstNeighborhoodIterator< TImageType, DefaultBoundaryConditionType > NeighborhoodType
ZeroFluxNeumannBoundaryCondition< ImageType > DefaultBoundaryConditionType
virtual void * GetGlobalDataPointer() const =0
const NeighborhoodScalesType ComputeNeighborhoodScales() const
const RadiusType & GetRadius() const
Vector< float, Self::ImageDimension > FloatOffsetType
virtual void ReleaseGlobalDataPointer(void *GlobalData) const =0
typename ImageType::PixelType PixelType
virtual PixelType ComputeUpdate(const NeighborhoodType &neighborhood, void *globalData, const FloatOffsetType &offset=FloatOffsetType(0.0))=0
void GetScaleCoefficients(PixelRealType vals[ImageDimension]) const
Vector< PixelRealType, Self::ImageDimension > NeighborhoodScalesType
~FiniteDifferenceFunction() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
typename ConstNeighborhoodIterator< TImageType >::RadiusType RadiusType
virtual TimeStepType ComputeGlobalTimeStep(void *GlobalData) const =0
void SetScaleCoefficients(const PixelRealType vals[ImageDimension])
void SetRadius(const RadiusType &r)
SmartPointer< const Self > ConstPointer
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
A function object that determines a neighborhood of values at an image boundary according to a Neuman...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....