ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAnisotropicDiffusionFunction.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 itkAnisotropicDiffusionFunction_h
19#define itkAnisotropicDiffusionFunction_h
20
22
23namespace itk
24{
135template <typename TImage>
136class ITK_TEMPLATE_EXPORT AnisotropicDiffusionFunction : public FiniteDifferenceFunction<TImage>
137{
138public:
139 ITK_DISALLOW_COPY_AND_MOVE(AnisotropicDiffusionFunction);
140
146
148 itkOverrideGetNameOfClassMacro(AnisotropicDiffusionFunction);
149
151 using typename Superclass::ImageType;
152 using typename Superclass::PixelType;
154 using typename Superclass::RadiusType;
155 using typename Superclass::NeighborhoodType;
156 using typename Superclass::TimeStepType;
157 using typename Superclass::FloatOffsetType;
158
160 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
161
167 virtual void
169
173 void
175 {
176 m_TimeStep = t;
177 }
178
179 const TimeStepType &
181 {
182 return m_TimeStep;
183 }
184
186 void
188 {
190 }
191
192 const double &
194 {
196 }
197
199 const double &
204
205 void
210
213 TimeStepType
214 ComputeGlobalTimeStep(void * itkNotUsed(GlobalData)) const override
215 {
216 return this->GetTimeStep();
217 }
218
221 void *
222 GetGlobalDataPointer() const override
223 {
224 return nullptr;
225 }
226
228 void
229 ReleaseGlobalDataPointer(void * itkNotUsed(GlobalData)) const override
230 {
231 /* do nothing */
232 }
233
234protected:
236 {
238 m_ConductanceParameter = 1.0; // default value
239 m_TimeStep = 0.125f; // default value
240 }
241
242 ~AnisotropicDiffusionFunction() override = default;
243
244 void
245 PrintSelf(std::ostream & os, Indent indent) const override
246 {
247 Superclass::PrintSelf(os, indent);
248 os << indent << "TimeStep: " << m_TimeStep << std::endl;
249 os << indent << "ConductanceParameter: " << m_ConductanceParameter << std::endl;
250 }
251
252private:
256};
257} // end namespace itk
258
259#endif
typename Superclass::PixelRealType PixelrealType
void PrintSelf(std::ostream &os, Indent indent) const override
virtual void CalculateAverageGradientMagnitudeSquared(ImageType *)=0
void ReleaseGlobalDataPointer(void *GlobalData) const override
FiniteDifferenceFunction< TImage > Superclass
TimeStepType ComputeGlobalTimeStep(void *GlobalData) const override
~AnisotropicDiffusionFunction() override=default
ConstNeighborhoodIterator< TImage, DefaultBoundaryConditionType > NeighborhoodType
Vector< float, Self::ImageDimension > FloatOffsetType
void PrintSelf(std::ostream &os, Indent indent) const override
typename ConstNeighborhoodIterator< TImage >::RadiusType RadiusType
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....