SimpleITK  
sitkUnsharpMaskImageFilter.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 sitkUnsharpMaskImageFilter_h
19#define sitkUnsharpMaskImageFilter_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
61public:
63
66
70
73
74
76 void SetSigmas(double s) { this->m_Sigmas = std::vector<double>(3, s ); }
77
78
79
80
84 void
85 SetSigmas(std::vector<double> Sigmas )
86 { this->m_Sigmas = std::move(Sigmas); }
87
90 std::vector<double>
91 GetSigmas() const { return this->m_Sigmas; }
92
93
97 void
98 SetAmount(double Amount )
99 { this->m_Amount = Amount; }
100
103 double
104 GetAmount() const { return this->m_Amount; }
105
106
110 void
112 { this->m_Threshold = Threshold; }
113
116 double
117 GetThreshold() const { return this->m_Threshold; }
118
119
123 void
125 { this->m_Clamp = Clamp; }
126
128 void
129 ClampOn() { return this->SetClamp(true); }
130 void
131 ClampOff() { return this->SetClamp(false); }
135 bool
136 GetClamp() const { return this->m_Clamp; }
137
138
140 std::string GetName() const { return std::string("UnsharpMaskImageFilter"); }
141
143 std::string ToString() const;
144
145
147 Image Execute(const Image &image1);
148
149
150private:
152 using MemberFunctionType = Image (Self::*)(const Image &image1);
153 template <class TImageType> Image ExecuteInternal(const Image &image1);
156
157
158 std::vector<double> m_Sigmas{ std::vector<double>(3, 1.0) };
159
160 double m_Amount{ 0.5 };
161
162 double m_Threshold{ 0.0 };
163
164 bool m_Clamp{ true };
165
166
167
168
169
170
171
172};
173
174
184 const Image &image1, std::vector<double> sigmas = std::vector<double>(3, 1.0), double amount = 0.5, double threshold = 0.0, bool clamp = true
185);
186
188
189}
190#endif
The Image class for SimpleITK.
Definition sitkImage.h:77
Image Execute(const Image &image1)
Image(Self::*)(const Image &image1) MemberFunctionType
Image ExecuteInternal(const Image &image1)
static const detail::MemberFunctionFactory< MemberFunctionType > & GetMemberFunctionFactory()
void SetSigmas(std::vector< double > Sigmas)
A class used to instantiate and generate function object to templated member functions.
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 outside threshold values.
Image UnsharpMask(const Image &image1, std::vector< double > sigmas=std::vector< double >(3, 1.0), double amount=0.5, double threshold=0.0, bool clamp=true)
Edge enhancement filter.
typelist2::typelist< BasicPixelID< float >, BasicPixelID< double > > RealPixelIDTypeList
Image Clamp(Image &&image1, PixelIDValueEnum outputPixelType=itk::simple::sitkUnknown, double lowerBound=-std::numeric_limits< double >::max(), double upperBound=std::numeric_limits< double >::max())
Casts input pixels to output pixel type and clamps the output pixel values to a specified range.
#define SITKBasicFilters_EXPORT