SimpleITK  
sitkBinaryMinMaxCurvatureFlowImageFilter.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 sitkBinaryMinMaxCurvatureFlowImageFilter_h
19 #define sitkBinaryMinMaxCurvatureFlowImageFilter_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkBasicFilters.h"
30 #include "sitkImageFilter.h"
31 
32 namespace itk::simple {
33 
65  public:
67 
70 
74 
77 \
78 
81  SITK_RETURN_SELF_TYPE_HEADER SetTimeStep ( double TimeStep ) { this->m_TimeStep = TimeStep; return *this; }
82 
85  double GetTimeStep() const { return this->m_TimeStep; }\
86 
89  SITK_RETURN_SELF_TYPE_HEADER SetNumberOfIterations ( uint32_t NumberOfIterations ) { this->m_NumberOfIterations = NumberOfIterations; return *this; }
90 
93  uint32_t GetNumberOfIterations() const { return this->m_NumberOfIterations; }\
94 
97  SITK_RETURN_SELF_TYPE_HEADER SetStencilRadius ( int StencilRadius ) { this->m_StencilRadius = StencilRadius; return *this; }
98 
101  int GetStencilRadius() const { return this->m_StencilRadius; }\
102 
106  SITK_RETURN_SELF_TYPE_HEADER SetThreshold ( double Threshold ) { this->m_Threshold = Threshold; return *this; }
107 
111  double GetThreshold() const { return this->m_Threshold; }
112 
114  std::string GetName() const { return std::string ("BinaryMinMaxCurvatureFlowImageFilter"); }
115 
117  std::string ToString() const;
118 
119 
121 #ifndef SWIG
122  Image Execute ( Image&& image1 );
123 #endif
124  Image Execute ( const Image& image1 );
125 
126  private:
127 
130  using MemberFunctionType = Image (Self::*)( const Image& image1 );
131  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
132 
133 
135 
136  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
137 
138 
139  /* Time step for PDE solver */
140  double m_TimeStep{0.05};
141 
142  /* Number of iterations to run */
143  uint32_t m_NumberOfIterations{5u};
144 
145  int m_StencilRadius{2};
146 
147  double m_Threshold{0.0};
148 
149 
150  bool m_InPlace{false};
151  };
152 
162 #ifndef SWIG
163  SITKBasicFilters_EXPORT Image BinaryMinMaxCurvatureFlow ( Image&& image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u, int stencilRadius = 2, double threshold = 0.0 );
164 #endif
165  SITKBasicFilters_EXPORT Image BinaryMinMaxCurvatureFlow ( const Image& image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u, int stencilRadius = 2, double threshold = 0.0 );
166 
168 }
169 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetNumberOfIterations
Self & SetNumberOfIterations(uint32_t NumberOfIterations)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:89
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetStencilRadius
Self & SetStencilRadius(int StencilRadius)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:97
sitkBasicFilters.h
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetTimeStep
Self & SetTimeStep(double TimeStep)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:81
itk::simple::RealPixelIDTypeList
typelist2::typelist< BasicPixelID< float >, BasicPixelID< double > > RealPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:98
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:28
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetThreshold
double GetThreshold() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:111
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetThreshold
Self & SetThreshold(double Threshold)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:106
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:136
itk::simple::BinaryMinMaxCurvatureFlow
Image BinaryMinMaxCurvatureFlow(Image &&image1, double timeStep=0.05, uint32_t numberOfIterations=5u, int stencilRadius=2, double threshold=0.0)
Denoise a binary image using min/max curvature flow.
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetNumberOfIterations
uint32_t GetNumberOfIterations() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:93
sitkImageFilter.h
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetTimeStep
double GetTimeStep() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:85
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::BinaryMinMaxCurvatureFlowImageFilter
Denoise a binary image using min/max curvature flow.
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:64
itk::simple::Threshold
Image Threshold(Image &&image1, double lower=0.0, double upper=1.0, double outsideValue=0.0)
Set image values to a user-specified value if they are below, above, or between simple threshold valu...
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::MemberFunctionType
Image(Self::*)(const Image &image1) MemberFunctionType
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:130
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::PixelIDTypeList
RealPixelIDTypeList PixelIDTypeList
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:76
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:34
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetStencilRadius
int GetStencilRadius() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:101
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple
Definition: sitkAdditionalProcedures.h:28
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetName
std::string GetName() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:114