ITK  6.0.0
Insight Toolkit
itkBinaryMinMaxCurvatureFlowFunction.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 itkBinaryMinMaxCurvatureFlowFunction_h
19#define itkBinaryMinMaxCurvatureFlowFunction_h
20
22#include "itkMacro.h"
23
24namespace itk
25{
42template <typename TImage>
43class ITK_TEMPLATE_EXPORT BinaryMinMaxCurvatureFlowFunction : public MinMaxCurvatureFlowFunction<TImage>
44{
45public:
46 ITK_DISALLOW_COPY_AND_MOVE(BinaryMinMaxCurvatureFlowFunction);
47
53
55 itkNewMacro(Self);
56
58 itkOverrideGetNameOfClassMacro(BinaryMinMaxCurvatureFlowFunction);
59
61 using typename Superclass::PixelType;
62 using typename Superclass::RadiusType;
63 using typename Superclass::NeighborhoodType;
64 using typename Superclass::FloatOffsetType;
65 using typename Superclass::ImageType;
66
68 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
69
71 void
72 SetThreshold(const double thresh)
73 {
74 m_Threshold = thresh;
75 }
76 const double &
78 {
79 return m_Threshold;
80 }
84 PixelType
86 void * globalData,
87 const FloatOffsetType & offset = FloatOffsetType(0.0)) override;
88
89protected:
92
93private:
94 double m_Threshold{};
95};
96} // end namespace itk
97
98#ifndef ITK_MANUAL_INSTANTIATION
99# include "itkBinaryMinMaxCurvatureFlowFunction.hxx"
100#endif
101
102#endif
PixelType ComputeUpdate(const NeighborhoodType &it, void *globalData, const FloatOffsetType &offset=FloatOffsetType(0.0)) override
~BinaryMinMaxCurvatureFlowFunction() override=default
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
typename ConstNeighborhoodIterator< TImage >::RadiusType RadiusType
Light weight base class for most itk classes.
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....