SimpleITK  2.0.0
sitkCurvatureFlowImageFilter.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 sitkCurvatureFlowImageFilter_h
19 #define sitkCurvatureFlowImageFilter_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 
73  public:
75 
77  virtual ~CurvatureFlowImageFilter();
78 
82 
85 \
86 
90  SITK_RETURN_SELF_TYPE_HEADER SetTimeStep ( double TimeStep ) { this->m_TimeStep = TimeStep; return *this; }
91 
95  double GetTimeStep() const { return this->m_TimeStep; }\
96 
99  SITK_RETURN_SELF_TYPE_HEADER SetNumberOfIterations ( uint32_t NumberOfIterations ) { this->m_NumberOfIterations = NumberOfIterations; return *this; }
100 
103  uint32_t GetNumberOfIterations() const { return this->m_NumberOfIterations; }
104 
106  std::string GetName() const { return std::string ("CurvatureFlowImageFilter"); }
107 
109  std::string ToString() const;
110 
111 
113 #ifndef SWIG
114  Image Execute ( Image&& image1 );
115 #endif
116  Image Execute ( const Image& image1 );
117 
118  private:
119 
122  using MemberFunctionType = Image (Self::*)( const Image& image1 );
123  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
124 
125 
127 
128  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
129 
130 
131  /* Time step for curvature flow */
132  double m_TimeStep{0.05};
133 
134  /* Number of iterations to run */
135  uint32_t m_NumberOfIterations{5u};
136 
137 
138  bool m_InPlace{false};
139  };
140 
150 #ifndef SWIG
151  SITKBasicFilters_EXPORT Image CurvatureFlow ( Image&& image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u );
152 #endif
153  SITKBasicFilters_EXPORT Image CurvatureFlow ( const Image& image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u );
154 
156  }
157 }
158 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
sitkBasicFilters.h
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::CurvatureFlowImageFilter::GetName
std::string GetName() const
Definition: sitkCurvatureFlowImageFilter.h:106
itk::simple::CurvatureFlow
Image CurvatureFlow(Image &&image1, double timeStep=0.05, uint32_t numberOfIterations=5u)
Denoise an image using curvature driven flow.
itk::simple::CurvatureFlowImageFilter::GetTimeStep
double GetTimeStep() const
Definition: sitkCurvatureFlowImageFilter.h:95
itk::simple::BasicPixelIDTypeList
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > >::Type BasicPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:53
sitkImageFilter.h
itk::simple::CurvatureFlowImageFilter
Denoise an image using curvature driven flow.
Definition: sitkCurvatureFlowImageFilter.h:72
itk::simple::CurvatureFlowImageFilter::SetNumberOfIterations
Self & SetNumberOfIterations(uint32_t NumberOfIterations)
Definition: sitkCurvatureFlowImageFilter.h:99
itk::simple::CurvatureFlowImageFilter::SetTimeStep
Self & SetTimeStep(double TimeStep)
Definition: sitkCurvatureFlowImageFilter.h:90
itk::simple::CurvatureFlowImageFilter::MemberFunctionType
Image(Self::*)(const Image &image1) MemberFunctionType
Definition: sitkCurvatureFlowImageFilter.h:122
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk
itk::simple::CurvatureFlowImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkCurvatureFlowImageFilter.h:128
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:36
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple::CurvatureFlowImageFilter::PixelIDTypeList
BasicPixelIDTypeList PixelIDTypeList
Definition: sitkCurvatureFlowImageFilter.h:84
itk::uint32_t
::uint32_t uint32_t
itk::simple::CurvatureFlowImageFilter::GetNumberOfIterations
uint32_t GetNumberOfIterations() const
Definition: sitkCurvatureFlowImageFilter.h:103