ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkBinaryMinMaxCurvatureFlowFunction.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 itkBinaryMinMaxCurvatureFlowFunction_h
19 #define itkBinaryMinMaxCurvatureFlowFunction_h
20 
22 #include "itkMacro.h"
23 
24 namespace itk
25 {
41 template< typename TImage >
42 class ITK_TEMPLATE_EXPORT BinaryMinMaxCurvatureFlowFunction:
43  public MinMaxCurvatureFlowFunction< TImage >
44 {
45 public:
46  ITK_DISALLOW_COPY_AND_ASSIGN(BinaryMinMaxCurvatureFlowFunction);
47 
53 
55  itkNewMacro(Self);
56 
60 
62  using PixelType = typename Superclass::PixelType;
66  using ImageType = typename Superclass::ImageType;
67 
69  static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
70 
72  void SetThreshold(const double thresh)
73  { m_Threshold = thresh; }
74  const double & GetThreshold() const
75  { return m_Threshold; }
77 
80  PixelType ComputeUpdate(const NeighborhoodType & neighborhood,
81  void *globalData,
82  const FloatOffsetType & offset = FloatOffsetType(0.0)
83  ) override;
84 
85 protected:
87  ~BinaryMinMaxCurvatureFlowFunction() override = default;
88 
89 private:
90  double m_Threshold;
91 };
92 } // end namespace itk
93 
94 #ifndef ITK_MANUAL_INSTANTIATION
95 #include "itkBinaryMinMaxCurvatureFlowFunction.hxx"
96 #endif
97 
98 #endif
Light weight base class for most itk classes.
typename Superclass::RadiusType RadiusType
typename Superclass::FloatOffsetType FloatOffsetType
typename Superclass::NeighborhoodType NeighborhoodType
typename Superclass::PixelType PixelType
typename Superclass::ImageType ImageType
typename Superclass::FloatOffsetType FloatOffsetType
typename Superclass::NeighborhoodType NeighborhoodType