ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkNarrowBandLevelSetImageFilter.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 itkNarrowBandLevelSetImageFilter_h
19#define itkNarrowBandLevelSetImageFilter_h
20
25#include "itkMath.h"
26
27namespace itk
28{
143template <typename TInputImage,
144 typename TFeatureImage,
145 typename TOutputPixelType = float,
147class ITK_TEMPLATE_EXPORT NarrowBandLevelSetImageFilter : public NarrowBandImageFilterBase<TInputImage, TOutputImage>
148{
149public:
150 ITK_DISALLOW_COPY_AND_MOVE(NarrowBandLevelSetImageFilter);
151
157
159 using typename Superclass::ValueType;
160 using typename Superclass::IndexType;
161 using typename Superclass::TimeStepType;
162 using typename Superclass::InputImageType;
163
165 using OutputImageType = TOutputImage;
166 using FeatureImageType = TFeatureImage;
167
170
173
175 itkOverrideGetNameOfClassMacro(NarrowBandLevelSetImageFilter);
176
180 virtual void
182 {
183 this->ProcessObject::SetNthInput(1, const_cast<FeatureImageType *>(f));
184 m_SegmentationFunction->SetFeatureImage(f);
185 }
186
187 virtual FeatureImageType *
189 {
190 return (static_cast<FeatureImageType *>(this->ProcessObject::GetInput(1)));
191 }
192
193
196 virtual void
198 {
199 this->SetInput(f);
200 }
201
202 virtual const typename SegmentationFunctionType::ImageType *
204 {
205 return m_SegmentationFunction->GetSpeedImage();
206 }
207
208 virtual const typename SegmentationFunctionType::VectorImageType *
210 {
211 return m_SegmentationFunction->GetAdvectionImage();
212 }
213
218 void
220 {
221 itkWarningMacro(
222 << "SetUseNegativeFeaturesOn has been deprecated. Please use ReverseExpansionDirectionOn() instead");
224 }
225 void
227 {
228 itkWarningMacro(
229 << "SetUseNegativeFeaturesOff has been deprecated. Please use ReverseExpansionDirectionOff() instead");
231 }
232
233
237 void
239 {
240 itkWarningMacro("SetUseNegativeFeatures has been deprecated. Please use SetReverseExpansionDirection instead");
241 if (u)
242 {
243 this->SetReverseExpansionDirection(false);
244 }
245 else
246 {
248 }
249 }
250
251 bool
253 {
254 itkWarningMacro(
255 << "GetUseNegativeFeatures has been deprecated. Please use GetReverseExpansionDirection() instead");
256 if (this->GetReverseExpansionDirection() == false)
257 {
258 return true;
259 }
260
261 return false;
262 }
263
264
274 itkSetMacro(ReverseExpansionDirection, bool);
275 itkGetConstMacro(ReverseExpansionDirection, bool);
276 itkBooleanMacro(ReverseExpansionDirection);
278
283 void
285 {
286 if (v != m_SegmentationFunction->GetPropagationWeight())
287 {
288 this->SetPropagationScaling(v);
289 }
290 if (v != m_SegmentationFunction->GetAdvectionWeight())
291 {
292 this->SetAdvectionScaling(v);
293 }
294 }
295
299 void
301 {
302 if (Math::NotExactlyEquals(v, m_SegmentationFunction->GetPropagationWeight()))
303 {
304 m_SegmentationFunction->SetPropagationWeight(v);
305 }
306 }
307
308 ValueType
310 {
311 return m_SegmentationFunction->GetPropagationWeight();
312 }
313
314
318 void
320 {
321 if (Math::NotExactlyEquals(v, m_SegmentationFunction->GetAdvectionWeight()))
322 {
323 m_SegmentationFunction->SetAdvectionWeight(v);
324 }
325 }
326
327 ValueType
329 {
330 return m_SegmentationFunction->GetAdvectionWeight();
331 }
332
333
339 void
341 {
342 if (Math::NotExactlyEquals(v, m_SegmentationFunction->GetCurvatureWeight()))
343 {
344 m_SegmentationFunction->SetCurvatureWeight(v);
345 }
346 }
347
348 ValueType
350 {
351 return m_SegmentationFunction->GetCurvatureWeight();
352 }
353
354
357 virtual void
359
365
369 void
370 SetMaximumIterations(unsigned int i)
371 {
372 itkWarningMacro("SetMaximumIterations is deprecated. Please use SetNumberOfIterations instead.");
373 this->SetNumberOfIterations(i);
374 }
375
376 unsigned int
378 {
379 itkWarningMacro("GetMaximumIterations is deprecated. Please use GetNumberOfIterations instead.");
380 return this->GetNumberOfIterations();
381 }
382
383
384 void
385 SetMaximumRMSError(const double) override
386 {
387 itkWarningMacro("The current implementation of this solver does not compute maximum RMS change. The maximum RMS "
388 "error value will not be set or used.");
389 }
390
392
393protected:
394 ~NarrowBandLevelSetImageFilter() override = default;
396
397 void
398 PrintSelf(std::ostream & os, Indent indent) const override;
399
400
402 void
404 {
406 // Estimate the progress of the filter
407 this->UpdateProgress(static_cast<float>(this->GetElapsedIterations()) /
408 static_cast<float>(this->GetNumberOfIterations()));
409 }
410
413
414 void
416
419 void
420 GenerateData() override;
421
425
427
431
433
435
436private:
438};
439} // end namespace itk
440
441#ifndef ITK_MANUAL_INSTANTIATION
442# include "itkNarrowBandLevelSetImageFilter.hxx"
443#endif
444
445#endif
This class compute the signed (positive and negative) chamfer distance in a narrow band.
virtual const IdentifierType & GetNumberOfIterations() const
virtual const IdentifierType & GetElapsedIterations() const
virtual void SetNumberOfIterations(IdentifierType _arg)
virtual void SetInput(const InputImageType *input)
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
Compute an approximate distance from an interpolated isocontour to the close grid points.
typename FiniteDifferenceFunctionType::TimeStepType TimeStepType
typename OutputImageType::IndexType IndexType
typename OutputImageType::ValueType ValueType
void InitializeIteration() override
virtual void SetFeatureImage(const FeatureImageType *f)
virtual const SegmentationFunctionType::ImageType * GetSpeedImage() const
virtual void SetSegmentationFunction(SegmentationFunctionType *s)
void PrintSelf(std::ostream &os, Indent indent) const override
virtual const SegmentationFunctionType::VectorImageType * GetAdvectionImage() const
virtual SegmentationFunctionType * GetSegmentationFunction()
~NarrowBandLevelSetImageFilter() override=default
virtual void SetNthInput(DataObjectPointerArraySizeType idx, DataObject *input)
void UpdateProgress(float progress)
Update the progress of the process object.
DataObject * GetInput(const DataObjectIdentifierType &key)
Return an input.
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
bool NotExactlyEquals(const TInput1 &x1, const TInput2 &x2)
Definition itkMath.h:730
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....