ITK  5.2.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  * 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 itkBinaryMinMaxCurvatureFlowFunction_h
19 #define itkBinaryMinMaxCurvatureFlowFunction_h
20 
22 #include "itkMacro.h"
23 
24 namespace itk
25 {
42 template <typename TImage>
43 class ITK_TEMPLATE_EXPORT BinaryMinMaxCurvatureFlowFunction : public MinMaxCurvatureFlowFunction<TImage>
44 {
45 public:
46  ITK_DISALLOW_COPY_AND_MOVE(BinaryMinMaxCurvatureFlowFunction);
47 
53 
55  itkNewMacro(Self);
56 
59 
61  using PixelType = typename Superclass::PixelType;
65  using ImageType = 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 &
77  GetThreshold() const
78  {
79  return m_Threshold;
80  }
82 
85  PixelType
86  ComputeUpdate(const NeighborhoodType & it,
87  void * globalData,
88  const FloatOffsetType & offset = FloatOffsetType(0.0)) override;
89 
90 protected:
92  ~BinaryMinMaxCurvatureFlowFunction() override = default;
93 
94 private:
95  double m_Threshold;
96 };
97 } // end namespace itk
98 
99 #ifndef ITK_MANUAL_INSTANTIATION
100 # include "itkBinaryMinMaxCurvatureFlowFunction.hxx"
101 #endif
102 
103 #endif
itk::BinaryMinMaxCurvatureFlowFunction::PixelType
typename Superclass::PixelType PixelType
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:61
itk::BinaryMinMaxCurvatureFlowFunction::ImageType
typename Superclass::ImageType ImageType
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:65
itk::SmartPointer< Self >
itk::MinMaxCurvatureFlowFunction::NeighborhoodType
typename Superclass::NeighborhoodType NeighborhoodType
Definition: itkMinMaxCurvatureFlowFunction.h:64
itk::BinaryMinMaxCurvatureFlowFunction::RadiusType
typename Superclass::RadiusType RadiusType
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:62
itk::MinMaxCurvatureFlowFunction::ImageType
typename Superclass::ImageType ImageType
Definition: itkMinMaxCurvatureFlowFunction.h:61
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itkMacro.h
itkMinMaxCurvatureFlowFunction.h
itk::BinaryMinMaxCurvatureFlowFunction::m_Threshold
double m_Threshold
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:95
itk::MinMaxCurvatureFlowFunction::FloatOffsetType
typename Superclass::FloatOffsetType FloatOffsetType
Definition: itkMinMaxCurvatureFlowFunction.h:65
itk::BinaryMinMaxCurvatureFlowFunction::GetThreshold
const double & GetThreshold() const
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:77
itk::BinaryMinMaxCurvatureFlowFunction::FloatOffsetType
typename Superclass::FloatOffsetType FloatOffsetType
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:64
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::BinaryMinMaxCurvatureFlowFunction::NeighborhoodType
typename Superclass::NeighborhoodType NeighborhoodType
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:63
itk::MinMaxCurvatureFlowFunction
Definition: itkMinMaxCurvatureFlowFunction.h:43
itk::BinaryMinMaxCurvatureFlowFunction::SetThreshold
void SetThreshold(const double thresh)
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:72
itk::MinMaxCurvatureFlowFunction::RadiusType
typename Superclass::RadiusType RadiusType
Definition: itkMinMaxCurvatureFlowFunction.h:63
itk::MinMaxCurvatureFlowFunction::PixelType
typename Superclass::PixelType PixelType
Definition: itkMinMaxCurvatureFlowFunction.h:62
itk::BinaryMinMaxCurvatureFlowFunction
Definition: itkBinaryMinMaxCurvatureFlowFunction.h:43