ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkThresholdSegmentationLevelSetImageFilter.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 * https://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 itkThresholdSegmentationLevelSetImageFilter_h
19#define itkThresholdSegmentationLevelSetImageFilter_h
20
23
24namespace itk
25{
83template <typename TInputImage, typename TFeatureImage, typename TOutputPixelType = float>
85 : public SegmentationLevelSetImageFilter<TInputImage, TFeatureImage, TOutputPixelType>
86{
87public:
88 ITK_DISALLOW_COPY_AND_MOVE(ThresholdSegmentationLevelSetImageFilter);
89
95
97 using typename Superclass::ValueType;
98 using typename Superclass::OutputImageType;
99 using typename Superclass::FeatureImageType;
100
104
106 itkOverrideGetNameOfClassMacro(ThresholdSegmentationLevelSetImageFilter);
107
109 itkNewMacro(Self);
110
114 void
116 {
117 this->m_ThresholdFunction->SetUpperThreshold(v);
118 this->Modified();
119 }
120
121 void
123 {
124 this->m_ThresholdFunction->SetLowerThreshold(v);
125 this->Modified();
126 }
127
128 ValueType
130 {
131 return m_ThresholdFunction->GetUpperThreshold();
132 }
133
134 ValueType
136 {
137 return m_ThresholdFunction->GetLowerThreshold();
138 }
139
140
144 void
146 {
147 this->m_ThresholdFunction->SetEdgeWeight(v);
148 this->Modified();
149 }
150
151 ValueType
153 {
154 return m_ThresholdFunction->GetEdgeWeight();
155 }
156
157
162 void
164 {
165 this->m_ThresholdFunction->SetSmoothingIterations(v);
166 this->Modified();
167 }
168
169 int
171 {
172 return m_ThresholdFunction->GetSmoothingIterations();
173 }
174
175
180 void
182 {
183 this->m_ThresholdFunction->SetSmoothingTimeStep(v);
184 this->Modified();
185 }
186
187 ValueType
189 {
190 return m_ThresholdFunction->GetSmoothingTimeStep();
191 }
192
193
198 void
200 {
201 this->m_ThresholdFunction->SetSmoothingConductance(v);
202 this->Modified();
203 }
204
205 ValueType
207 {
208 return m_ThresholdFunction->GetSmoothingConductance();
209 }
210
211
212protected:
215
216 void
217 PrintSelf(std::ostream & os, Indent indent) const override;
218
219private:
221};
222} // end namespace itk
223
224#ifndef ITK_MANUAL_INSTANTIATION
225# include "itkThresholdSegmentationLevelSetImageFilter.hxx"
226#endif
227
228#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
Implements transparent reference counting.
This function is used in ThresholdSegmentationLevelSetImageFilter to segment structures in images bas...
ThresholdSegmentationLevelSetFunction< OutputImageType, FeatureImageType > ThresholdFunctionType
~ThresholdSegmentationLevelSetImageFilter() override=default
SegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType > Superclass
typename OutputImageType::ValueType ValueType
void PrintSelf(std::ostream &os, Indent indent) const override
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....