SimpleITK  2.0.0
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 {
33  namespace simple {
34 
66  public:
68 
71 
75 
78 \
79 
82  SITK_RETURN_SELF_TYPE_HEADER SetTimeStep ( double TimeStep ) { this->m_TimeStep = TimeStep; return *this; }
83 
86  double GetTimeStep() const { return this->m_TimeStep; }\
87 
90  SITK_RETURN_SELF_TYPE_HEADER SetNumberOfIterations ( uint32_t NumberOfIterations ) { this->m_NumberOfIterations = NumberOfIterations; return *this; }
91 
94  uint32_t GetNumberOfIterations() const { return this->m_NumberOfIterations; }\
95 
98  SITK_RETURN_SELF_TYPE_HEADER SetStencilRadius ( int StencilRadius ) { this->m_StencilRadius = StencilRadius; return *this; }
99 
102  int GetStencilRadius() const { return this->m_StencilRadius; }\
103 
107  SITK_RETURN_SELF_TYPE_HEADER SetThreshold ( double Threshold ) { this->m_Threshold = Threshold; return *this; }
108 
112  double GetThreshold() const { return this->m_Threshold; }
113 
115  std::string GetName() const { return std::string ("BinaryMinMaxCurvatureFlowImageFilter"); }
116 
118  std::string ToString() const;
119 
120 
122 #ifndef SWIG
123  Image Execute ( Image&& image1 );
124 #endif
125  Image Execute ( const Image& image1 );
126 
127  private:
128 
131  using MemberFunctionType = Image (Self::*)( const Image& image1 );
132  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
133 
134 
136 
137  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
138 
139 
140  /* Time step for PDE solver */
141  double m_TimeStep{0.05};
142 
143  /* Number of iterations to run */
144  uint32_t m_NumberOfIterations{5u};
145 
146  int m_StencilRadius{2};
147 
148  double m_Threshold{0.0};
149 
150 
151  bool m_InPlace{false};
152  };
153 
163 #ifndef SWIG
164  SITKBasicFilters_EXPORT Image BinaryMinMaxCurvatureFlow ( Image&& image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u, int stencilRadius = 2, double threshold = 0.0 );
165 #endif
166  SITKBasicFilters_EXPORT Image BinaryMinMaxCurvatureFlow ( const Image& image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u, int stencilRadius = 2, double threshold = 0.0 );
167 
169  }
170 }
171 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetNumberOfIterations
Self & SetNumberOfIterations(uint32_t NumberOfIterations)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:90
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetStencilRadius
Self & SetStencilRadius(int StencilRadius)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:98
sitkBasicFilters.h
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetTimeStep
Self & SetTimeStep(double TimeStep)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:82
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetThreshold
double GetThreshold() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:112
itk::simple::RealPixelIDTypeList
typelist::MakeTypeList< BasicPixelID< float >, BasicPixelID< double > >::Type RealPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:96
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::SetThreshold
Self & SetThreshold(double Threshold)
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:107
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:137
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:94
sitkImageFilter.h
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetTimeStep
double GetTimeStep() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:86
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::BinaryMinMaxCurvatureFlowImageFilter
Denoise a binary image using min/max curvature flow.
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:65
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:131
itk
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::PixelIDTypeList
RealPixelIDTypeList PixelIDTypeList
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:77
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:36
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetStencilRadius
int GetStencilRadius() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:102
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::uint32_t
::uint32_t uint32_t
itk::simple::BinaryMinMaxCurvatureFlowImageFilter::GetName
std::string GetName() const
Definition: sitkBinaryMinMaxCurvatureFlowImageFilter.h:115