ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkNarrowBandThresholdSegmentationLevelSetImageFilter.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 itkNarrowBandThresholdSegmentationLevelSetImageFilter_h
19#define itkNarrowBandThresholdSegmentationLevelSetImageFilter_h
20
23
24namespace itk
25{
83template <typename TInputImage, typename TFeatureImage, typename TOutputPixelType = float>
85 : public NarrowBandLevelSetImageFilter<TInputImage,
86 TFeatureImage,
87 TOutputPixelType,
88 Image<TOutputPixelType, TInputImage::ImageDimension>>
89{
90public:
94 TFeatureImage,
95 TOutputPixelType,
99
101 using typename Superclass::ValueType;
102 using typename Superclass::OutputImageType;
103 using typename Superclass::FeatureImageType;
104
108
111
113 itkNewMacro(Self);
114
118 void
120 {
121 this->m_ThresholdFunction->SetUpperThreshold(v);
122 this->Modified();
123 }
124
125 void
127 {
128 this->m_ThresholdFunction->SetLowerThreshold(v);
129 this->Modified();
130 }
131
132 ValueType
134 {
135 return m_ThresholdFunction->GetUpperThreshold();
136 }
137
138 ValueType
140 {
141 return m_ThresholdFunction->GetLowerThreshold();
142 }
143
144
148 void
150 {
151 this->m_ThresholdFunction->SetEdgeWeight(v);
152 this->Modified();
153 }
154
155 ValueType
157 {
158 return m_ThresholdFunction->GetEdgeWeight();
159 }
160
161
166 void
168 {
169 this->m_ThresholdFunction->SetSmoothingIterations(v);
170 this->Modified();
171 }
172
173 int
175 {
176 return m_ThresholdFunction->GetSmoothingIterations();
177 }
178
179
184 void
186 {
187 this->m_ThresholdFunction->SetSmoothingTimeStep(v);
188 this->Modified();
189 }
190
191 ValueType
193 {
194 return m_ThresholdFunction->GetSmoothingTimeStep();
195 }
196
197
202 void
204 {
205 this->m_ThresholdFunction->SetSmoothingConductance(v);
206 this->Modified();
207 }
208
209 ValueType
211 {
212 return m_ThresholdFunction->GetSmoothingConductance();
213 }
214
215
216 itkConceptMacro(OutputHasNumericTraitsCheck, (Concept::HasNumericTraits<TOutputPixelType>));
217
218protected:
221
222 void
223 PrintSelf(std::ostream & os, Indent indent) const override;
224
226 // not impl.
227 void
228 operator=(const Self &); // purposely
229 // not
230 // implemented
231
232private:
234};
235} // end namespace itk
236
237#ifndef ITK_MANUAL_INSTANTIATION
238# include "itkNarrowBandThresholdSegmentationLevelSetImageFilter.hxx"
239#endif
240
241#endif
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
NarrowBandLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType, Image< TOutputPixelType, TInputImage::ImageDimension > > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
typename OutputImageType::ValueType ValueType
ThresholdSegmentationLevelSetFunction< OutputImageType, FeatureImageType > ThresholdFunctionType
virtual void Modified() const
Implements transparent reference counting.
This function is used in ThresholdSegmentationLevelSetImageFilter to segment structures in images bas...
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....