SimpleITK  
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.jinja to make changes.
25 */
26
27#include <memory>
28
29#include "sitkBasicFilters.h"
30#include "sitkImageFilter.h"
32
33namespace itk::simple {
34
88public:
90
93
97
100
101
102
103
107 void
108 SetTimeStep(double TimeStep )
109 { this->m_TimeStep = TimeStep; }
110
113 double
114 GetTimeStep() const { return this->m_TimeStep; }
115
116
119 void
120 SetNumberOfIterations(uint32_t NumberOfIterations )
121 { this->m_NumberOfIterations = NumberOfIterations; }
122
124 uint32_t
126
127
129 std::string GetName() const { return std::string("CurvatureFlowImageFilter"); }
130
132 std::string ToString() const;
133
134
136#ifndef SWIG
137 Image Execute(Image&& image1);
138#endif
139 Image Execute(const Image &image1);
140
141
142private:
144 using MemberFunctionType = Image (Self::*)(const Image &image1);
145 template <class TImageType> Image ExecuteInternal(const Image &image1);
148
149
150 /* Time step for curvature flow */
151 double m_TimeStep{ 0.05 };
152
153 /* Number of iterations to run */
154 uint32_t m_NumberOfIterations{ 5u };
155
156
157
158
159
160
161
162 bool m_InPlace{false};
163
164};
165
166
175#ifndef SWIG
177 Image&& image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u
178);
179
180
181#endif
183 const Image &image1, double timeStep = 0.05, uint32_t numberOfIterations = 5u
184);
185
187
188}
189#endif
Image Execute(const Image &image1)
Image(Self::*)(const Image &image1) MemberFunctionType
Image ExecuteInternal(const Image &image1)
static const detail::MemberFunctionFactory< MemberFunctionType > & GetMemberFunctionFactory()
void SetNumberOfIterations(uint32_t NumberOfIterations)
The Image class for SimpleITK.
Definition sitkImage.h:77
A class used to instantiate and generate function object to templated member functions.
typelist2::typelist< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > > BasicPixelIDTypeList
Image CurvatureFlow(Image &&image1, double timeStep=0.05, uint32_t numberOfIterations=5u)
Denoise an image using curvature driven flow.
#define SITKBasicFilters_EXPORT