SimpleITK  
sitkProjectedLandweberDeconvolutionImageFilter.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 sitkProjectedLandweberDeconvolutionImageFilter_h
19#define sitkProjectedLandweberDeconvolutionImageFilter_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
65public:
67
70
74
77
78
79
80
84 void
85 SetAlpha(double Alpha )
86 { this->m_Alpha = Alpha; }
87
90 double
91 GetAlpha() const { return this->m_Alpha; }
92
93
97 void
98 SetNumberOfIterations(int NumberOfIterations )
99 { this->m_NumberOfIterations = NumberOfIterations; }
100
103 int
105
106
110 void
113
115 void
116 NormalizeOn() { return this->SetNormalize(true); }
117 void
118 NormalizeOff() { return this->SetNormalize(false); }
121 bool
122 GetNormalize() const { return this->m_Normalize; }
123
124 typedef enum { ZERO_PAD, ZERO_FLUX_NEUMANN_PAD, PERIODIC_PAD } BoundaryConditionType;
125
128 void
130 { this->m_BoundaryCondition = BoundaryCondition; }
131
133 BoundaryConditionType
135
136 typedef enum { SAME, VALID } OutputRegionModeType;
137
140 void
142 { this->m_OutputRegionMode = OutputRegionMode; }
143
145 OutputRegionModeType
146 GetOutputRegionMode() const { return this->m_OutputRegionMode; }
147
148
150 std::string GetName() const { return std::string("ProjectedLandweberDeconvolutionImageFilter"); }
151
153 std::string ToString() const;
154
155
157 Image Execute(const Image &image1, const Image &image2);
158
159
160private:
162 using MemberFunctionType = Image (Self::*)(const Image &image1, const Image &image2);
163 template <class TImageType> Image ExecuteInternal(const Image &image1, const Image &image2);
166
167
168 double m_Alpha{ 0.1 };
169
171
172 bool m_Normalize{ false };
173
175
177
178
179
180
181
182
183
184};
185
186
197);
198
200
201}
202#endif
The Image class for SimpleITK.
Definition sitkImage.h:77
Image(Self::*)(const Image &image1, const Image &image2) MemberFunctionType
Image ExecuteInternal(const Image &image1, const Image &image2)
Image Execute(const Image &image1, const Image &image2)
static const detail::MemberFunctionFactory< MemberFunctionType > & GetMemberFunctionFactory()
A class used to instantiate and generate function object to templated member functions.
Image ProjectedLandweberDeconvolution(const Image &image1, const Image &image2, double alpha=0.1, int numberOfIterations=1, bool normalize=false, ProjectedLandweberDeconvolutionImageFilter::BoundaryConditionType boundaryCondition=itk::simple::ProjectedLandweberDeconvolutionImageFilter::ZERO_FLUX_NEUMANN_PAD, ProjectedLandweberDeconvolutionImageFilter::OutputRegionModeType outputRegionMode=itk::simple::ProjectedLandweberDeconvolutionImageFilter::SAME)
Deconvolve an image using the projected Landweber deconvolution algorithm.
Image Normalize(const Image &image1)
Normalize an image by setting its mean to zero and variance to one.
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
#define SITKBasicFilters_EXPORT